Package org.apache.poi.hssf.usermodel
Class HSSFChildAnchor
- java.lang.Object
 - 
- org.apache.poi.hssf.usermodel.HSSFAnchor
 - 
- org.apache.poi.hssf.usermodel.HSSFChildAnchor
 
 
 
- 
- All Implemented Interfaces:
 ChildAnchor
public final class HSSFChildAnchor extends HSSFAnchor
 
- 
- 
Constructor Summary
Constructors Constructor Description HSSFChildAnchor()HSSFChildAnchor(int dx1, int dy1, int dx2, int dy2)create anchor from scratchHSSFChildAnchor(EscherChildAnchorRecord escherChildAnchorRecord)create anchor from existing file 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)intgetDx1()intgetDx2()intgetDy1()intgetDy2()inthashCode()booleanisHorizontallyFlipped()booleanisVerticallyFlipped()voidsetAnchor(int dx1, int dy1, int dx2, int dy2)voidsetDx1(int dx1)voidsetDx2(int dx2)voidsetDy1(int dy1)voidsetDy2(int dy2)- 
Methods inherited from class org.apache.poi.hssf.usermodel.HSSFAnchor
createAnchorFromEscher 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
HSSFChildAnchor
public HSSFChildAnchor(EscherChildAnchorRecord escherChildAnchorRecord)
create anchor from existing file- Parameters:
 escherChildAnchorRecord-
 
- 
HSSFChildAnchor
public HSSFChildAnchor()
 
- 
HSSFChildAnchor
public HSSFChildAnchor(int dx1, int dy1, int dx2, int dy2)create anchor from scratch- Parameters:
 dx1- x coordinate of the left up cornerdy1- y coordinate of the left up cornerdx2- x coordinate of the right down cornerdy2- y coordinate of the right down corner
 
 - 
 
- 
Method Detail
- 
getDx1
public int getDx1()
- Returns:
 - x coordinate of the left up corner
 
 
- 
setDx1
public void setDx1(int dx1)
- Parameters:
 dx1- x coordinate of the left up corner
 
- 
getDy1
public int getDy1()
- Returns:
 - y coordinate of the left up corner
 
 
- 
setDy1
public void setDy1(int dy1)
- Parameters:
 dy1- y coordinate of the left up corner
 
- 
getDy2
public int getDy2()
- Returns:
 - y coordinate of the right down corner
 
 
- 
setDy2
public void setDy2(int dy2)
- Parameters:
 dy2- y coordinate of the right down corner
 
- 
getDx2
public int getDx2()
- Returns:
 - x coordinate of the right down corner
 
 
- 
setDx2
public void setDx2(int dx2)
- Parameters:
 dx2- x coordinate of the right down corner
 
- 
setAnchor
public void setAnchor(int dx1, int dy1, int dx2, int dy2)- Parameters:
 dx1- x coordinate of the left up cornerdy1- y coordinate of the left up cornerdx2- x coordinate of the right down cornerdy2- y coordinate of the right down corner
 
- 
isHorizontallyFlipped
public boolean isHorizontallyFlipped()
- Specified by:
 isHorizontallyFlippedin classHSSFAnchor- Returns:
 - whether this shape is horizontally flipped
 
 
- 
isVerticallyFlipped
public boolean isVerticallyFlipped()
- Specified by:
 isVerticallyFlippedin classHSSFAnchor- Returns:
 - whether this shape is vertically flipped
 
 
- 
equals
public boolean equals(java.lang.Object obj)
- Overrides:
 equalsin classjava.lang.Object
 
- 
hashCode
public int hashCode()
- Overrides:
 hashCodein classjava.lang.Object
 
 - 
 
 -