PDF for UWP | ComponentOne
C1.Xaml.Pdf Namespace / C1PdfDocument Class / DrawPath Method
The 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 Pen, _
       ByVal points() As Point, _
       ByVal types() As Byte, _
       ByVal close As Boolean _
    ) 
    public void DrawPath( 
       Pen pen,
       Point[] points,
       byte[] types,
       bool close
    )

    Parameters

    pen
    The 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