Example usage for Java org.apache.poi.ss.usermodel ClientAnchor fields, constructors, methods, implement or subclass
The text is from its open source code.
short | getCol1() Returns the column (0 based) of the first cell, or -1 if there is no top-left anchor cell. |
short | getCol2() Returns the column (0 based) of the second cell, or -1 if there is no bottom-right anchor cell. |
int | getDx1() Returns the x coordinate within the first cell. |
int | getDx2() Returns the x coordinate within the second cell Note - XSSF and HSSF have a slightly different coordinate system, values in XSSF are larger by a factor of org.apache.poi.util.Units#EMU_PER_PIXEL |
int | getDy1() Returns the y coordinate within the first cell Note - XSSF and HSSF have a slightly different coordinate system, values in XSSF are larger by a factor of org.apache.poi.util.Units#EMU_PER_PIXEL |
int | getDy2() Sets the y coordinate within the second cell Note - XSSF and HSSF have a slightly different coordinate system, values in XSSF are larger by a factor of org.apache.poi.util.Units#EMU_PER_PIXEL |
int | getRow1() Returns the row (0 based) of the first cell, or -1 if there is no bottom-right anchor cell. |
int | getRow2() Returns the row (0 based) of the second cell, or -1 if there is no bottom-right anchor cell. |
void | setAnchorType(AnchorType anchorType) Sets the anchor type |
void | setCol1(int col1) Sets the column (0 based) of the first cell. |
void | setCol2(int col2) Returns the column (0 based) of the second cell. |
void | setDx1(int dx1) Sets the x coordinate within the first cell Note - XSSF and HSSF have a slightly different coordinate system, values in XSSF are larger by a factor of org.apache.poi.util.Units#EMU_PER_PIXEL |
void | setDx2(int dx2) Sets the x coordinate within the second cell Note - XSSF and HSSF have a slightly different coordinate system, values in XSSF are larger by a factor of org.apache.poi.util.Units#EMU_PER_PIXEL |
void | setDy1(int dy1) Sets the y coordinate within the first cell Note - XSSF and HSSF have a slightly different coordinate system, values in XSSF are larger by a factor of org.apache.poi.util.Units#EMU_PER_PIXEL |
void | setDy2(int dy2) Sets the y coordinate within the second cell Note - XSSF and HSSF have a slightly different coordinate system, values in XSSF are larger by a factor of org.apache.poi.util.Units#EMU_PER_PIXEL |
void | setRow1(int row1) Returns the row (0 based) of the first cell. |
void | setRow2(int row2) Returns the row (0 based) of the first cell. |