DrawingContext::DrawEllipse Method (Brush^, Pen^, Point, Double, Double)

 

Draws an ellipse with the specified Brush and Pen.

Namespace:   System.Windows.Media
Assembly:  PresentationCore (in PresentationCore.dll)

public:
virtual void DrawEllipse(
	Brush^ brush,
	Pen^ pen,
	Point center,
	double radiusX,
	double radiusY
) abstract

Parameters

brush
Type: System.Windows.Media::Brush^

The brush with which to fill the ellipse. This is optional, and can be null. If the brush is null, no fill is drawn.

pen
Type: System.Windows.Media::Pen^

The pen with which to stroke the ellipse. This is optional, and can be null. If the pen is null, no stroke is drawn.

center
Type: System.Windows::Point

The location of the center of the ellipse.

radiusX
Type: System::Double

The horizontal radius of the ellipse.

radiusY
Type: System::Double

The vertical radius of the ellipse.

The brush and the pen can both be null. If the brush is null, then no fill is performed. If the pen is null, then no stoke is performed. If both the pen and the brush are null, then the drawing is not visible.

.NET Framework
Available since 3.0
Return to top
Show: