public class XSSFClientAnchor extends XSSFAnchor implements ClientAnchor
AnchorType.ClientAnchor.AnchorType| Modifier | Constructor and Description |
|---|---|
|
XSSFClientAnchor()
Creates a new client anchor and defaults all the anchor positions to 0.
|
protected |
XSSFClientAnchor(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1,
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell2)
Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.
|
|
XSSFClientAnchor(int dx1,
int dy1,
int dx2,
int dy2,
int col1,
int row1,
int col2,
int row2)
Creates a new client anchor and sets the top-left and bottom-right
coordinates of the anchor by cell references and offsets.
|
protected |
XSSFClientAnchor(XSSFSheet sheet,
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1,
org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)
Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.
|
protected |
XSSFClientAnchor(XSSFSheet sheet,
org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position,
org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)
Create XSSFClientAnchor from existing xml beans, sized and positioned relative to a pair of cells.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o) |
ClientAnchor.AnchorType |
getAnchorType()
Gets the anchor type
Changed from returning an int to an enum in POI 3.14 beta 1.
|
short |
getCol1() |
short |
getCol2() |
int |
getDx1() |
int |
getDx2() |
int |
getDy1() |
int |
getDy2() |
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker |
getFrom()
Return starting anchor point
|
org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D |
getPosition() |
int |
getRow1() |
int |
getRow2() |
org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D |
getSize() |
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker |
getTo()
Return ending anchor point
|
int |
hashCode() |
boolean |
isSet() |
void |
setAnchorType(ClientAnchor.AnchorType anchorType)
Sets the anchor type
|
void |
setCol1(int col1) |
void |
setCol2(int col2) |
void |
setDx1(int dx1) |
void |
setDx2(int dx2) |
void |
setDy1(int dy1) |
void |
setDy2(int dy2) |
protected void |
setFrom(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker from) |
void |
setPosition(org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position)
Sets the top-left absolute position of the object.
|
void |
setRow1(int row1) |
void |
setRow2(int row2) |
void |
setSize(org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)
Sets the size of the object.
|
protected void |
setTo(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker to) |
java.lang.String |
toString() |
public XSSFClientAnchor()
AnchorType#MOVE_AND_RESIZE relative to cell range A1:A1.public XSSFClientAnchor(int dx1,
int dy1,
int dx2,
int dy2,
int col1,
int row1,
int col2,
int row2)
AnchorType#MOVE_AND_RESIZE.dx1 - the x coordinate within the first cell.dy1 - the y coordinate within the first cell.dx2 - the x coordinate within the second cell.dy2 - the y coordinate within the second cell.col1 - the column (0 based) of the first cell.row1 - the row (0 based) of the first cell.col2 - the column (0 based) of the second cell.row2 - the row (0 based) of the second cell.protected XSSFClientAnchor(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1,
org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell2)
AnchorType#MOVE_AND_RESIZE.cell1 - starting anchor pointcell2 - ending anchor pointprotected XSSFClientAnchor(XSSFSheet sheet, org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker cell1, org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)
AnchorType#MOVE_DONT_RESIZE.sheet - needed to calculate ending point based on column/row sizescell1 - starting anchor pointsize - object size, to calculate ending anchor pointprotected XSSFClientAnchor(XSSFSheet sheet, org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position, org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)
AnchorType#DONT_MOVE_AND_RESIZE.sheet - needed to calculate starting and ending points based on column/row sizesposition - starting absolute positionsize - object size, to calculate ending positionpublic short getCol1()
getCol1 in interface ClientAnchorpublic void setCol1(int col1)
setCol1 in interface ClientAnchorjava.lang.NullPointerException - if cell1 is null (fixed position)ClientAnchor.setCol1(int)public short getCol2()
getCol2 in interface ClientAnchorpublic void setCol2(int col2)
setCol2 in interface ClientAnchorjava.lang.NullPointerException - if cell2 is null (fixed size)ClientAnchor.setCol2(int)public int getRow1()
getRow1 in interface ClientAnchorpublic void setRow1(int row1)
setRow1 in interface ClientAnchorjava.lang.NullPointerException - if cell1 is null (fixed position)ClientAnchor.setRow1(int)public int getRow2()
getRow2 in interface ClientAnchorpublic void setRow2(int row2)
setRow2 in interface ClientAnchorjava.lang.NullPointerException - if cell2 is null (fixed size)ClientAnchor.setRow2(int)public int getDx1()
getDx1 in interface ChildAnchorgetDx1 in interface ClientAnchorpublic void setDx1(int dx1)
setDx1 in interface ChildAnchorsetDx1 in interface ClientAnchorjava.lang.NullPointerException - if cell1 is null (fixed position)ChildAnchor.setDx1(int)public int getDy1()
getDy1 in interface ChildAnchorgetDy1 in interface ClientAnchorpublic void setDy1(int dy1)
setDy1 in interface ChildAnchorsetDy1 in interface ClientAnchorjava.lang.NullPointerException - if cell1 is null (fixed position)ChildAnchor.setDy1(int)public int getDy2()
getDy2 in interface ChildAnchorgetDy2 in interface ClientAnchorpublic void setDy2(int dy2)
setDy2 in interface ChildAnchorsetDy2 in interface ClientAnchorjava.lang.NullPointerException - if cell2 is null (fixed size)ChildAnchor.setDy2(int)public int getDx2()
getDx2 in interface ChildAnchorgetDx2 in interface ClientAnchorpublic void setDx2(int dx2)
setDx2 in interface ChildAnchorsetDx2 in interface ClientAnchorjava.lang.NullPointerException - if cell2 is null (fixed size)ChildAnchor.setDx2(int)public boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Object@Internal public org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker getFrom()
protected void setFrom(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker from)
@Internal public org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker getTo()
protected void setTo(org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker to)
public org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D getPosition()
public void setPosition(org.openxmlformats.schemas.drawingml.x2006.main.CTPoint2D position)
position - public org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D getSize()
public void setSize(org.openxmlformats.schemas.drawingml.x2006.main.CTPositiveSize2D size)
size - public void setAnchorType(ClientAnchor.AnchorType anchorType)
setAnchorType in interface ClientAnchoranchorType - the anchor type to setpublic ClientAnchor.AnchorType getAnchorType()
getAnchorType in interface ClientAnchorpublic boolean isSet()