Edit

Share via


Graphics.DrawPath(Pen, GraphicsPath) Method

Definition

Draws a GraphicsPath.

C#
public void DrawPath(System.Drawing.Pen pen, System.Drawing.Drawing2D.GraphicsPath path);

Parameters

pen
Pen

Pen that determines the color, width, and style of the path.

path
GraphicsPath

GraphicsPath to draw.

Exceptions

pen is null.

-or-

path is null.

Examples

The following code example is designed for use with Windows Forms, and it requires PaintEventArgs e, 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.

C#
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.Black, 3);
             
    // Draw graphics path to screen.
    e.Graphics.DrawPath(blackPen, graphPath);
}

Remarks

The current transformation in the graphic context is applied to the GraphicsPath before it is drawn.

Applies to

Product Versions