GraphicsFillEllipse Method

Fills the interior of an ellipse defined by a bounding rectangle specified by a pair of coordinates, a width, and a height.

Definition

Namespace: SMath.Drawing
Assembly: SMath.Drawing (in SMath.Drawing.dll) Version: 1.2.0
C#
public void FillEllipse(
	ColorBrush brush,
	float x,
	float y,
	float width,
	float height
)

Parameters

brush  ColorBrush
ColorBrush that determines the characteristics of the fill.
x  Single
The x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse.
y  Single
The y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse.
width  Single
Width of the bounding rectangle that defines the ellipse.
height  Single
Height of the bounding rectangle that defines the ellipse.

Implements

IGraphicsFillEllipse(ColorBrush, Single, Single, Single, Single)

See Also