Draws a pie.

Namespace: Spire.Pdf.Graphics
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public void DrawPie(
	PdfBrush brush,
	RectangleF rectangle,
	float startAngle,
	float sweepAngle
)
Public Sub DrawPie ( 
	brush As PdfBrush,
	rectangle As RectangleF,
	startAngle As Single,
	sweepAngle As Single
)
public:
void DrawPie(
	PdfBrush^ brush, 
	RectangleF rectangle, 
	float startAngle, 
	float sweepAngle
)
member DrawPie : 
        brush : PdfBrush * 
        rectangle : RectangleF * 
        startAngle : float32 * 
        sweepAngle : float32 -> unit 

Parameters

brush
PdfBrush
The brush.
rectangle
RectangleF
The rectangle.
startAngle
Single
The start angle.
sweepAngle
Single
The sweep angle.

See Also