This constructor constructs an ellipse element at the given coordinates and having the given size

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public EllipseElement(
	float x,
	float y,
	float xRadius,
	float yRadius
)
Visual Basic
Public Sub New ( 
	x As Single,
	y As Single,
	xRadius As Single,
	yRadius As Single
)
Visual C++
public:
EllipseElement(
	float x, 
	float y, 
	float xRadius, 
	float yRadius
)

Parameters

x
Type: System..::..Single
The X coordinate where the ellipse will be rendered
y
Type: System..::..Single
Y coordinate where the ellipse will be rendered
xRadius
Type: System..::..Single
The X radius of the ellipse
yRadius
Type: System..::..Single
The Y radius of the ellipse

See Also