DrawingContext::DrawRectangle Method (Brush^, Pen^, Rect)

 

Draws a rectangle with the specified Brush and Pen. The pen and the brush can be null.

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

public:
virtual void DrawRectangle(
	Brush^ brush,
	Pen^ pen,
	Rect rectangle
) abstract

Parameters

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

The brush with which to fill the rectangle. 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 rectangle. This is optional, and can be null. If the pen is null, no stroke is drawn.

rectangle
Type: System.Windows::Rect

The rectangle to draw.

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: