| GraphicsFillPie Method (Brush, Single, Single, Single, Single, Single, Single) | 
 
            Fills a pie with the specified brush
 
    Namespace: 
   Eto.Drawing
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic void FillPie(
	Brush brush,
	float x,
	float y,
	float width,
	float height,
	float startAngle,
	float sweepAngle
)
Public Sub FillPie ( 
	brush As Brush,
	x As Single,
	y As Single,
	width As Single,
	height As Single,
	startAngle As Single,
	sweepAngle As Single
)
member FillPie : 
        brush : Brush * 
        x : float32 * 
        y : float32 * 
        width : float32 * 
        height : float32 * 
        startAngle : float32 * 
        sweepAngle : float32 -> unit 
Parameters
- brush
- Type: Eto.DrawingBrush
 Brush to fill the pie
- x
- Type: SystemSingle
 X co-ordinate of the upper left corner of the pie
- y
- Type: SystemSingle
 Y co-ordinate of the upper left corner of the pie
- width
- Type: SystemSingle
 Width of the pie
- height
- Type: SystemSingle
 Height of the pie
- startAngle
- Type: SystemSingle
 Elliptical (skewed) angle in degrees from the x-axis to the starting point of the pie
- sweepAngle
- Type: SystemSingle
 Angle in degrees from the startAngle to the ending point of the pie
 See Also
See Also