Graphics.DrawPath Method
.NET Framework 3.0
Draws a GraphicsPath.
Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)
Assembly: System.Drawing (in system.drawing.dll)
public void DrawPath ( Pen pen, GraphicsPath path )
public function DrawPath ( pen : Pen, path : GraphicsPath )
Not applicable.
Parameters
- pen
Pen that determines the color, width, and style of the path.
- path
GraphicsPath 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 graphics path object and adds an ellipse to it.
-
Creates a black pen.
-
Draws the graphics path to the screen.
public: void DrawPathEllipse( PaintEventArgs^ e ) { // Create graphics path object and add ellipse. GraphicsPath^ graphPath = gcnew GraphicsPath; graphPath->AddEllipse( 0, 0, 200, 100 ); // Create pen. Pen^ blackPen = gcnew Pen( Color::Black,3.0f ); // Draw graphics path to screen. e->Graphics->DrawPath( blackPen, graphPath ); }
public void DrawPathEllipse(PaintEventArgs e)
{
// Create graphics path object and add ellipse.
GraphicsPath graphPath = new GraphicsPath();
graphPath.AddEllipse(0, 0, 200, 100);
// Create pen.
Pen blackPen = new Pen(Color.get_Black(), 3);
// Draw graphics path to screen.
e.get_Graphics().DrawPath(blackPen, graphPath);
} //DrawPathEllipse
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: