Creates a new BezierShape given a start point, start control point, end control point and a end point
Namespace: TallComponents.PDF.Layout.ShapesAssembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.63.0
Syntax
| C# |
|---|
public BezierShape( double x, double y, double x1, double y1, double x2, double y2, double x3, double y3, Pen pen ) |
| Visual Basic |
|---|
Public Sub New ( _ x As Double, _ y As Double, _ x1 As Double, _ y1 As Double, _ x2 As Double, _ y2 As Double, _ x3 As Double, _ y3 As Double, _ pen As Pen _ ) |
Parameters
- x
- Type: System..::..Double
Horizontal position of the start point.
- y
- Type: System..::..Double
Vertical position of the start point.
- x1
- Type: System..::..Double
Horizontal position of the start control point.
- y1
- Type: System..::..Double
Vertical position of the start control point.
- x2
- Type: System..::..Double
Horizontal position of the end control point.
- y2
- Type: System..::..Double
Vertical position of the end control point.
- x3
- Type: System..::..Double
Horizontal position of the end point.
- y3
- Type: System..::..Double
Vertical position of the end point.
- pen
- Type: TallComponents.PDF.Layout.Pens..::..Pen
Used to draw the curves of this bezier.