[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgEllipticalArcCommand

Class SvgEllipticalArcCommand

Namespace
GrapeCity.Documents.Svg
Assembly
GcDocs.Imaging.dll

Represents an elliptical arc curve command in the path data.

public class SvgEllipticalArcCommand : SvgPathCommand
Inheritance
object
SvgEllipticalArcCommand
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

SvgEllipticalArcCommand(bool)

Initializes a new instance of the SvgEllipticalArcCommand class.

public SvgEllipticalArcCommand(bool relative = false)

Parameters

relative bool

Indicates whether the command uses absolute (false) or relative (true) coordinates.

Properties

ArcSize

Gets or sets a value indicating whether the arc sweep is greater than or equal to 180 degrees.

public ArcSize ArcSize { get; set; }

Property Value

ArcSize

RadiusX

Gets or sets the X-radius of the elliptical arc.

public float RadiusX { get; set; }

Property Value

float

RadiusY

Gets or sets the Y-radius of the elliptical arc.

public float RadiusY { get; set; }

Property Value

float

SweepDirection

Gets or sets a value that specifies whether the arc sweep is clockwise or counterclockwise.

public SweepDirection SweepDirection { get; set; }

Property Value

SweepDirection

X

Gets or sets the X-coordinate of the destination point.

public float X { get; set; }

Property Value

float

XAxisRotation

Gets or sets a value indicating how the ellipse as a whole is rotated, in degrees, relative to the current coordinate system.

public float XAxisRotation { get; set; }

Property Value

float

Y

Gets or sets the Y-coordinate of the destination point.

public float Y { get; set; }

Property Value

float