Graphics.DrawRectangles Method (Pen, Rectangle[])
.NET Framework 2.0
Draws a series of rectangles specified by Rectangle structures.
Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)
Assembly: System.Drawing (in system.drawing.dll)
public void DrawRectangles ( Pen pen, Rectangle[] rects )
public function DrawRectangles ( pen : Pen, rects : Rectangle[] )
Not applicable.
Parameters
- pen
Pen that determines the color, width, and style of the outlines of the rectangles.
- rects
Array of Rectangle structures that represent the rectangles to draw.
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. The code performs the following actions:
-
Creates a black pen.
-
Creates an array of three rectangles.
-
Draws the rectangles to the screen.
public: void DrawRectanglesRectangle( PaintEventArgs^ e ) { // Create pen. Pen^ blackPen = gcnew Pen( Color::Black,3.0f ); // Create array of rectangles. array<Rectangle>^ rects = {Rectangle(0,0,100,200),Rectangle(100,200,250,50),Rectangle(300,0,50,100)}; // Draw rectangles to screen. e->Graphics->DrawRectangles( blackPen, rects ); }
public void DrawRectanglesRectangle(PaintEventArgs e)
{
// Create pen.
Pen blackPen = new Pen(Color.get_Black(), 3);
// Create array of rectangles.
Rectangle rects[] = {new Rectangle(0, 0, 100, 200), new Rectangle(100,
200, 250, 50), new Rectangle(300, 0, 50, 100)};
// Draw rectangles to screen.
e.get_Graphics().DrawRectangles(blackPen, rects);
} //DrawRectanglesRectangle
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: