Table of Contents

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 float

The X coordinate where the ellipse will be rendered

y float

The Y coordinate where the ellipse will be rendered

xRadius float

The X radius of the ellipse

yRadius float

The Y radius of the ellipse

Properties

X

The X coordinate of the ellipse center

public float X { get; set; }

Property Value

float

XRadius

The horizontal radius

public float XRadius { get; set; }

Property Value

float

Y

The Y coordinate of the ellipse center

public float Y { get; set; }

Property Value

float

YRadius

The vertical radius

public float YRadius { get; set; }

Property Value

float