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

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

    Parameters

    relative
    Indicates whether the command uses absolute (false) or relative (true) coordinates.
    x1
    The X-coordinate of the first control point.
    y1
    The Y-coordinate of the first control point.
    x2
    The X-coordinate of the second control point.
    y2
    The Y-coordinate of the second control point.
    x
    The X-coordinate of the destination point.
    y
    The Y-coordinate of the destination point.
    See Also