[]
        
(Showing Draft Content)

GrapeCity.Documents.Svg.SvgQuadraticBezierCurveToCommand

Class SvgQuadraticBezierCurveToCommand

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

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

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

Constructors

SvgQuadraticBezierCurveToCommand(bool)

Initializes a new instance of the SvgQuadraticBezierCurveToCommand class.

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

X1

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

public float X1 { get; set; }

Property Value

float

Y

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

public float Y { get; set; }

Property Value

float

Y1

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

public float Y1 { get; set; }

Property Value

float