GraphicsPath::AddRectangle Method (Rectangle)
.NET Framework (current version)
Adds a rectangle to this path.
Assembly: System.Drawing (in System.Drawing.dll)
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, an OnPaint event object. The code performs the following actions:
Creates a path.
Creates a rectangle and adds the rectangle to the path.
Draws the path to the screen.
private: void AddRectangleExample( PaintEventArgs^ e ) { // Create a GraphicsPath object and add a rectangle to it. GraphicsPath^ myPath = gcnew GraphicsPath; Rectangle pathRect = Rectangle(20,20,100,200); myPath->AddRectangle( pathRect ); // Draw the path to the screen. Pen^ myPen = gcnew Pen( Color::Black,2.0f ); e->Graphics->DrawPath( myPen, myPath ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: