Document Solutions for Imaging
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Svg Namespace / SvgPathBuilder Class / AddEllipticalArc Method
Indicates whether the command uses absolute (false) or relative (true) coordinates.
The X-radius of the elliptical arc.
The Y-radius of the elliptical arc.
A value indicating how the ellipse as a whole is rotated, in degrees, relative to the current coordinate system.
A value indicating whether the arc sweep is greater than or equal to 180 degrees.
A value that specifies whether the arc sweep is clockwise or counterclockwise.
The X-coordinate of the destination point.
The Y-coordinate of the destination point.

In This Topic
    AddEllipticalArc Method
    In This Topic
    Adds the "elliptical arc" command to the path.
    Syntax
    'Declaration
     
    Public Sub AddEllipticalArc( _
       ByVal relative As System.Boolean, _
       ByVal rx As System.Single, _
       ByVal ry As System.Single, _
       ByVal xAxisRotation As System.Single, _
       ByVal arcSize As ArcSize, _
       ByVal sweepDirection As SweepDirection, _
       ByVal x As System.Single, _
       ByVal y As System.Single _
    ) 
    public void AddEllipticalArc( 
       System.bool relative,
       System.float rx,
       System.float ry,
       System.float xAxisRotation,
       ArcSize arcSize,
       SweepDirection sweepDirection,
       System.float x,
       System.float y
    )

    Parameters

    relative
    Indicates whether the command uses absolute (false) or relative (true) coordinates.
    rx
    The X-radius of the elliptical arc.
    ry
    The Y-radius of the elliptical arc.
    xAxisRotation
    A value indicating how the ellipse as a whole is rotated, in degrees, relative to the current coordinate system.
    arcSize
    A value indicating whether the arc sweep is greater than or equal to 180 degrees.
    sweepDirection
    A value that specifies whether the arc sweep is clockwise or counterclockwise.
    x
    The X-coordinate of the destination point.
    y
    The Y-coordinate of the destination point.
    See Also