In This Topic
Adds the "elliptical arc" command to the path.
Syntax
'Declaration
Public Sub AddEllipticalArc( _
ByVal As System.Boolean, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As ArcSize, _
ByVal As SweepDirection, _
ByVal As System.Single, _
ByVal As System.Single _
)
public void AddEllipticalArc(
System.bool ,
System.float ,
System.float ,
System.float ,
ArcSize ,
SweepDirection ,
System.float ,
System.float
)
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