|
com.aspose.pdf.elements
Class Ellipse
java.lang.Object
com.aspose.pdf.elements.Shape
com.aspose.pdf.elements.Ellipse
public class Ellipse - extends Shape
|
Constructor Summary |
Ellipse()
Initialize a new instance of the Ellipse class. |
Ellipse(float left,
float bottom,
float width,
float height)
Initialize a new instance of the Ellipse class. |
|
Method Summary |
float |
getBottom()
Gets a float value that indicates the bottom position of the ellipse. |
float |
getHeight()
Gets a float value that indicates the height of the ellipse. |
float |
getLeft()
Gets a float value that indicates the left position of the ellipse. |
float |
getWidth()
Gets a float value that indicates the height of the ellipse. |
Ellipse |
setBottom(float bottom)
Sets a float value that indicates the bottom position of the ellipse. |
Ellipse |
setHeight(float height)
Sets a float value that indicates the height of the ellipse. |
Ellipse |
setLeft(float left)
Sets a float value that indicates the left position of the ellipse. |
Ellipse |
setWidth(float width)
Sets a float value that indicates the height of the ellipse. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Ellipse
public Ellipse()
- Initialize a new instance of the Ellipse class.
Ellipse
public Ellipse(float left,
float bottom,
float width,
float height)
- Initialize a new instance of the Ellipse class.
- Parameters:
left - The left position of the ellipse.bottom - The bottom position of the ellipse.width - The width of the ellipse.height - The height of the ellipse.
getBottom
public float getBottom()
- Gets a float value that indicates the bottom position of the ellipse.
- Returns:
- the bottom position of the ellipse.
setBottom
public Ellipse setBottom(float bottom)
- Sets a float value that indicates the bottom position of the ellipse.
- Parameters:
bottom - The bottom to set.
getLeft
public float getLeft()
- Gets a float value that indicates the left position of the ellipse.
- Returns:
- the left position of the ellipse.
setLeft
public Ellipse setLeft(float left)
- Sets a float value that indicates the left position of the ellipse.
- Parameters:
left - The left to set.
getHeight
public float getHeight()
- Gets a float value that indicates the height of the ellipse.
- Returns:
- the height of the ellipse.
setHeight
public Ellipse setHeight(float height)
- Sets a float value that indicates the height of the ellipse.
- Parameters:
height - The height to set.
getWidth
public float getWidth()
- Gets a float value that indicates the height of the ellipse.
- Returns:
- the width of the ellipse.
setWidth
public Ellipse setWidth(float width)
- Sets a float value that indicates the height of the ellipse.
- Parameters:
width - The width to set.
|