ComponentOne Word for WinForms
C1.C1Word.4.8 Assembly / C1.C1Word Namespace / C1WordDocument Class / DrawPath Method
The System.Drawing.Pen used to stroke the specified path.
The path points to draw.
The path types to draw.
Whether is closed path (figure) or not.

In This Topic
    DrawPath Method
    In This Topic
    Draws a path defined by points and types.
    Syntax
    'Declaration
     
    Public Sub DrawPath( _
       ByVal pen As System.Drawing.Pen, _
       ByVal points() As System.Drawing.PointF, _
       ByVal types() As System.Byte, _
       ByVal close As System.Boolean _
    ) 
    public void DrawPath( 
       System.Drawing.Pen pen,
       System.Drawing.PointF[] points,
       System.byte[] types,
       System.bool close
    )

    Parameters

    pen
    The System.Drawing.Pen used to stroke the specified path.
    points
    The path points to draw.
    types
    The path types to draw.
    close
    Whether is closed path (figure) or not.
    See Also