Class EllipseElement
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class represents an ellipse element that can be added to a PDF document
[ClassInterface(ClassInterfaceType.AutoDual)]
public class EllipseElement : PageGraphicElement
- Inheritance
-
EllipseElement
- Derived
- Inherited Members
Constructors
EllipseElement()
This constructor constructs an empty ellipse element without size
public EllipseElement()
EllipseElement(float, float, float, float)
This constructor constructs an ellipse element at the given coordinates and having the given size
public EllipseElement(float x, float y, float xRadius, float yRadius)
Parameters
x
floatThe X coordinate where the ellipse will be rendered
y
floatThe Y coordinate where the ellipse will be rendered
xRadius
floatThe X radius of the ellipse
yRadius
floatThe Y radius of the ellipse
Properties
X
The X coordinate of the ellipse center
public float X { get; set; }
Property Value
XRadius
The horizontal radius
public float XRadius { get; set; }
Property Value
Y
The Y coordinate of the ellipse center
public float Y { get; set; }
Property Value
YRadius
The vertical radius
public float YRadius { get; set; }