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
floatThe first point X coordinate
y1
floatThe first point Y coordinate
x2
floatThe second point X coordinate
y2
floatThe second point Y coordinate
x3
floatThe third point X coordinate
y3
floatThe third point Y coordinate
x4
floatThe fourth point X coordinate
y4
floatThe fourth point Y coordinate
Properties
X1
The X coordinate of the first point of the Bezier curve
public float X1 { get; set; }
Property Value
X2
The X coordinate of the second point of the Bezier curve
public float X2 { get; set; }
Property Value
X3
The X coordinate of the third point of the Bezier curve
public float X3 { get; set; }
Property Value
X4
The X coordinate of the fourth point of the Bezier curve
public float X4 { get; set; }
Property Value
Y1
The Y coordinate of the first point of the Bezier curve
public float Y1 { get; set; }
Property Value
Y2
The Y coordinate of the second point of the Bezier curve
public float Y2 { get; set; }
Property Value
Y3
The Y coordinate of the third point of the Bezier curve
public float Y3 { get; set; }
Property Value
Y4
The Y coordinate of the fourth point of the Bezier curve
public float Y4 { get; set; }