[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Operators.CubicBezierTo2

Class CubicBezierTo2

Namespace
GrapeCity.Documents.Pdf.Operators
Assembly
GcDocs.Pdf.dll

PDF "v" operator. Append a cubic Bezier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bezier control points.

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

Constructors

CubicBezierTo2(float, float, float, float)

Initializes a new instance of the CubicBezierTo2 class.

public CubicBezierTo2(float x2, float y2, float x3, float y3)

Parameters

x2 float

The value of X2.

y2 float

The value of Y2.

x3 float

The value of X3.

y3 float

The value of Y3.

Fields

X2

The X coordinate of point 2.

public readonly float X2

Field Value

float

X3

The X coordinate of point 3.

public readonly float X3

Field Value

float

Y2

The Y coordinate of point 2.

public readonly float Y2

Field Value

float

Y3

The Y coordinate of point 3.

public readonly float Y3

Field Value

float

Properties

Desc

Gets the operator's description.

public override string Desc { get; }

Property Value

string

Name

Gets the operator's PDF name.

public override string Name { get; }

Property Value

string

Methods

IsSame(OperatorBase)

Determines whether the provided operator is the same as the current operator.

public override bool IsSame(OperatorBase other)

Parameters

other OperatorBase

A OperatorBase object.

Returns

bool

true if the provided operator is the same as the current operator; otherwise, false.