[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgMoveToCommand

Class SvgMoveToCommand

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

Represents a 'moveto' command in the path data.

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

Constructors

SvgMoveToCommand(bool)

Initializes a new instance of the SvgMoveToCommand class.

public SvgMoveToCommand(bool relative = false)

Parameters

relative bool

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

Properties

X

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

public float X { get; set; }

Property Value

float

Y

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

public float Y { get; set; }

Property Value

float