Table of Contents

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 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 slice measured counter-clockwise from the X axis centered in the enclosing rectangle.

sweepAngle float

The 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

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