[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgSmoothCurveToCommand

Class SvgSmoothCurveToCommand

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

Represents a shorthand cubic Bézier curve command in the path data.

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

Constructors

SvgSmoothCurveToCommand(bool)

Initializes a new instance of the SvgSmoothCurveToCommand class.

public SvgSmoothCurveToCommand(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

X2

Gets or sets the X-coordinate of the second control point.

public float X2 { get; set; }

Property Value

float

Y

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

public float Y { get; set; }

Property Value

float

Y2

Gets or sets the Y-coordinate of the second control point.

public float Y2 { get; set; }

Property Value

float