This documentation is for the old version. Go to the latest Graphics Mill docs

GdiGraphics.FillPie Method (Brush, Single, Single, Single, Single, Single, Single)

Fills a pie shape.

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub FillPie ( _
	brush As Brush, _
	left As Single, _
	top As Single, _
	width As Single, _
	height As Single, _
	startAngle As Single, _
	sweepAngle As Single _
)
C#
public void FillPie(
	Brush brush,
	float left,
	float top,
	float width,
	float height,
	float startAngle,
	float sweepAngle
)

Parameters

brush

Type: Aurigma.GraphicsMill.Drawing.Brush

Brush object which is used to fill a pie.
left

Type: System.Single

X-coordinate of the top left corner the bounding rectangle for the ellipse (see Remarks section).
top

Type: System.Single

Y-coordinate of the top left corner of the bounding rectangle for the ellipse (see Remarks section).
width

Type: System.Single

Width of the bounding rectangle for the ellipse (see Remarks section).
height

Type: System.Single

Height of the bounding rectangle for the ellipse (see Remarks section).
startAngle

Type: System.Single

An angle between x-axis and the first radial line which defines a sector on the ellipse.
sweepAngle

Type: System.Single

An angle between first and second radial line which defines a sector on the ellipse.

Remarks

Pie is an arc + two lines connecting arc ends with the center of the ellipse. In other words pie is defined with a tightest bounding rectangle of the ellipse and two angles which specifies necessary ellipse sector.

All the coordinates are measured in units specified with Unit property.

To outline a pie shape, use DrawPie(Pen, Int32, Int32, Int32, Int32, Int32, Int32) method.

See Also

Reference