Table of Contents

Class BezierCurveElement

Namespace
EvoPdf
Assembly
evohtmltopdf.dll

Represents a Bezier curve element to be rendered in a PDF document

[ClassInterface(ClassInterfaceType.AutoDual)]
public class BezierCurveElement : PageGraphicElement
Inheritance
BezierCurveElement
Inherited Members

Constructors

BezierCurveElement()

Constructs an empty bezier curve

public BezierCurveElement()

BezierCurveElement(float, float, float, float, float, float, float, float)

Constructs a Bezier curve element

public BezierCurveElement(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)

Parameters

x1 float

The first point X coordinate

y1 float

The first point Y coordinate

x2 float

The second point X coordinate

y2 float

The second point Y coordinate

x3 float

The third point X coordinate

y3 float

The third point Y coordinate

x4 float

The fourth point X coordinate

y4 float

The fourth point Y coordinate

Properties

X1

The X coordinate of the first point of the Bezier curve

public float X1 { get; set; }

Property Value

float

X2

The X coordinate of the second point of the Bezier curve

public float X2 { get; set; }

Property Value

float

X3

The X coordinate of the third point of the Bezier curve

public float X3 { get; set; }

Property Value

float

X4

The X coordinate of the fourth point of the Bezier curve

public float X4 { get; set; }

Property Value

float

Y1

The Y coordinate of the first point of the Bezier curve

public float Y1 { get; set; }

Property Value

float

Y2

The Y coordinate of the second point of the Bezier curve

public float Y2 { get; set; }

Property Value

float

Y3

The Y coordinate of the third point of the Bezier curve

public float Y3 { get; set; }

Property Value

float

Y4

The Y coordinate of the fourth point of the Bezier curve

public float Y4 { get; set; }

Property Value

float