Search
IGraphics.DrawPie Method (Pen, RectangleF, Single, Single)
See Also
 





Draws a pie shape defined by an ellipse specified by a RectangleF structure and two radial lines.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void DrawPie (
    Pen pen,
    RectangleF rect,
    float startAngle,
    float sweepAngle
)

Visual Basic  Copy Code

Sub DrawPie( _
    pen As Pen, _
    rect As RectangleF, _
    startAngle As Single, _
    sweepAngle As Single _
)

 Parameters

pen
A .NET Pen object that determines the color, width, and style of the pie shape.
rect
A .NET RectangleF structure that represents the bounding rectangle that defines the ellipse from which the pie shape comes.
startAngle
Angle measured in degrees clockwise from the x-axis to the first side of the pie shape.
sweepAngle
Angle measured in degrees clockwise from the startAngle parameter to the second side of the pie shape.

 See Also