Create a new PieShape with the given startpoint, horizontal and vertical radius and pen.

Namespace: TallComponents.PDF.Layout.Shapes
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.66.0

Syntax

C#
public PieShape(
	double x,
	double y,
	double rx,
	double ry,
	Pen pen
)
Visual Basic
Public Sub New ( _
	x As Double, _
	y As Double, _
	rx As Double, _
	ry As Double, _
	pen As Pen _
)

Parameters

x
Type: System..::..Double
X-position of the center of the pie.
y
Type: System..::..Double
Y-position of the center of the pie.
rx
Type: System..::..Double
Horizontal radius.
ry
Type: System..::..Double
Vertical radius.
pen
Type: TallComponents.PDF.Layout.Pens..::..Pen
Used to draw the curves of the pie.

See Also