Skip to content

PDFVCurveToOperator

Namespace: O2S.Components.PDF4NET.Graphics.Operators

Defines the v (curve to) content stream operator.

public class PDFVCurveToOperator : PDFContentStreamOperator

Inheritance ObjectPDFContentStreamOperatorPDFVCurveToOperator

Constructors

PDFVCurveToOperator()

Initializes a new PDFVCurveToOperator object.

public PDFVCurveToOperator()

PDFVCurveToOperator(Double, Double, Double, Double)

Initializes a new PDFVCurveToOperator object.

public PDFVCurveToOperator(double x2, double y2, double x3, double y3)

Parameters

x2 Double
The X coordinate of the second control point.

y2 Double
The Y coordinate of the second control point.

x3 Double
The X coordinate of the third control point.

y3 Double
The Y coordinate of the third control point.


Properties

Context

Gets the content stream container from which the operator is extracted.

public PDFContentStreamContainer Context { get; internal set; }

Property Value

PDFContentStreamContainer
A content stream container object, a PDFPage or a PDFFormXObject.


OpCode

Gets the operator code.

public string OpCode { get; }

Property Value

String
The operator code as it is written in the content stream.


Type

Gets or sets the operator type.

public PDFContentStreamOperatorType Type { get; set; }

Property Value

PDFContentStreamOperatorType
The type of this operator.


X2

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

public double X2 { get; set; }

Property Value

Double
The X coordinate of the second control point.


X3

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

public double X3 { get; set; }

Property Value

Double
The X coordinate of the third control point.


Y2

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

public double Y2 { get; set; }

Property Value

Double
The Y coordinate of the second control point.


Y3

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

public double Y3 { get; set; }

Property Value

Double
The Y coordinate of the third control point.