Java org.apache.poi.ss.usermodel ClientAnchor fields, constructors, methods, implement or subclass

Example usage for Java org.apache.poi.ss.usermodel ClientAnchor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.poi.ss.usermodel ClientAnchor.

The text is from its open source code.

Method

shortgetCol1()
Returns the column (0 based) of the first cell, or -1 if there is no top-left anchor cell.
shortgetCol2()
Returns the column (0 based) of the second cell, or -1 if there is no bottom-right anchor cell.
intgetDx1()
Returns the x coordinate within the first cell.
intgetDx2()
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
intgetDy1()
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
intgetDy2()
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
intgetRow1()
Returns the row (0 based) of the first cell, or -1 if there is no bottom-right anchor cell.
intgetRow2()
Returns the row (0 based) of the second cell, or -1 if there is no bottom-right anchor cell.
voidsetAnchorType(AnchorType anchorType)
Sets the anchor type
voidsetCol1(int col1)
Sets the column (0 based) of the first cell.
voidsetCol2(int col2)
Returns the column (0 based) of the second cell.
voidsetDx1(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
voidsetDx2(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
voidsetDy1(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
voidsetDy2(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
voidsetRow1(int row1)
Returns the row (0 based) of the first cell.
voidsetRow2(int row2)
Returns the row (0 based) of the first cell.