Table of Contents

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 float

X coordinate of the rectangle enclosing the ellipse.

y float

Y coordinate of the rectangle enclosing the ellipse.

width float

Width of the rectangle enclosing the ellipse.

height float

Height of the rectangle enclosing the ellipse.

startAngle float

The start angle in degrees of the ellipse arc measured counter-clockwise from the X axis centered in the enclosing rectangle.

sweepAngle float

The 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

float

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

float

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

float

Width

Gets or sets the width of the rectangle enclosing the ellipse

public float Width { get; set; }

Property Value

float

X

Gets or sets the X coordinate of the rectangle enclosing the ellipse

public float X { get; set; }

Property Value

float

Y

Gets or sets the Y coordinate of the rectangle enclosing the ellipse

public float Y { get; set; }

Property Value

float