Class EllipseSliceElement
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
This class represents an ellipse slice element that can be added to a PDF document
[ClassInterface(ClassInterfaceType.AutoDual)]
public class EllipseSliceElement : PageGraphicElement
- Inheritance
-
EllipseSliceElement
- Inherited Members
Constructors
EllipseSliceElement(float, float, float, float, float, float)
Constructs an ellipse slice element
public EllipseSliceElement(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 slice measured counter-clockwise from the X axis centered in the enclosing rectangle.
sweepAngle
floatThe angle in degrees of the ellipse slice 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; }