Package loci.poi.hssf.usermodel
Class HSSFAnchor
- java.lang.Object
-
- loci.poi.hssf.usermodel.HSSFAnchor
-
- Direct Known Subclasses:
HSSFChildAnchor
,HSSFClientAnchor
public abstract class HSSFAnchor extends Object
An anchor is what specifics the position of a shape within a client object or within another containing shape.- Author:
- Glen Stampoultzis (glens at apache.org)
-
-
Constructor Summary
Constructors Constructor Description HSSFAnchor()
HSSFAnchor(int dx1, int dy1, int dx2, int dy2)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description int
getDx1()
int
getDx2()
int
getDy1()
int
getDy2()
abstract boolean
isHorizontallyFlipped()
abstract boolean
isVerticallyFlipped()
void
setDx1(int dx1)
void
setDx2(int dx2)
void
setDy1(int dy1)
void
setDy2(int dy2)
-
-
-
Method Detail
-
getDx1
public int getDx1()
-
setDx1
public void setDx1(int dx1)
-
getDy1
public int getDy1()
-
setDy1
public void setDy1(int dy1)
-
getDy2
public int getDy2()
-
setDy2
public void setDy2(int dy2)
-
getDx2
public int getDx2()
-
setDx2
public void setDx2(int dx2)
-
isHorizontallyFlipped
public abstract boolean isHorizontallyFlipped()
-
isVerticallyFlipped
public abstract boolean isVerticallyFlipped()
-
-