Class EllipseArcElement
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
Represents an ellipse arc element
[ClassInterface(ClassInterfaceType.AutoDual)]
public class EllipseArcElement : PageGraphicElement
- Inheritance
-
EllipseArcElement
- Inherited Members
Constructors
EllipseArcElement(float, float, float, float, float, float)
Constructs an ellipse arc element
public EllipseArcElement(float x, float y, float width, float height, float startAngle, float sweepAngle)
Parameters
x
floatX coordinate of the rectangle enclosing the ellipse.
y
floatY coordinate of the rectangle enclosing the ellipse.
width
floatWidth of the rectangle enclosing the ellipse.
height
floatHeight of the rectangle enclosing the ellipse.
startAngle
floatThe start angle in degrees of the ellipse arc measured counter-clockwise from the X axis centered in the enclosing rectangle.
sweepAngle
floatThe angle in degrees of the ellipse arc measured counter-clockwise from the start angle of the slice.
Properties
Height
Gets or sets the height of the rectangle enclosing the ellipse
public float Height { get; set; }
Property Value
StartAngle
Gets or sets the start angle in degrees of the ellipse slice measured counter-clockwise from the X axis centered in the enclosing rectangle
public float StartAngle { get; set; }
Property Value
SweepAngle
Gets or sets the angle in degrees of the ellipse slice measured counter-clockwise from the start angle of the slice
public float SweepAngle { get; set; }
Property Value
Width
Gets or sets the width of the rectangle enclosing the ellipse
public float Width { get; set; }
Property Value
X
Gets or sets the X coordinate of the rectangle enclosing the ellipse
public float X { get; set; }
Property Value
Y
Gets or sets the Y coordinate of the rectangle enclosing the ellipse
public float Y { get; set; }