PdfPath
AddBezier Method (PointF, PointF, PointF, PointF)
|
Adds a bezier curve.
Namespace:
Spire.Pdf.Graphics
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public void AddBezier(
PointF startPoint,
PointF firstControlPoint,
PointF secondControlPoint,
PointF endPoint
)
Public Sub AddBezier (
startPoint As PointF,
firstControlPoint As PointF,
secondControlPoint As PointF,
endPoint As PointF
)
public:
void AddBezier(
PointF startPoint,
PointF firstControlPoint,
PointF secondControlPoint,
PointF endPoint
)
member AddBezier :
startPoint : PointF *
firstControlPoint : PointF *
secondControlPoint : PointF *
endPoint : PointF -> unit
Parameters
-
startPoint
-
Type:
System.Drawing
PointF
The start point.
-
firstControlPoint
-
Type:
System.Drawing
PointF
The first control point.
-
secondControlPoint
-
Type:
System.Drawing
PointF
The second control point.
-
endPoint
-
Type:
System.Drawing
PointF
The end point.
See Also