Document Solutions for PDF
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Svg Namespace / SvgPathBuilder Class / AddMoveTo Method
Indicates whether the command uses absolute (false) or relative (true) coordinates.
The X-coordinate of the destination point.
The Y-coordinate of the destination point.

In This Topic
    AddMoveTo Method
    In This Topic
    Adds the "moveto" command to the path.
    Syntax
    'Declaration
     
    Public Sub AddMoveTo( _
       ByVal relative As System.Boolean, _
       ByVal x As System.Single, _
       ByVal y As System.Single _
    ) 
    public void AddMoveTo( 
       System.bool relative,
       System.float x,
       System.float y
    )

    Parameters

    relative
    Indicates whether the command uses absolute (false) or relative (true) coordinates.
    x
    The X-coordinate of the destination point.
    y
    The Y-coordinate of the destination point.
    See Also