Version

AddBezier(PointF,PointF,PointF,PointF) Method

Adds a cubic Bézier curve to the current figure.
Syntax
'Declaration
 
Public Overloads Sub AddBezier( _
   ByVal pt1 As PointF, _
   ByVal pt2 As PointF, _
   ByVal pt3 As PointF, _
   ByVal pt4 As PointF _
) 
public void AddBezier( 
   PointF pt1,
   PointF pt2,
   PointF pt3,
   PointF pt4
)

Parameters

pt1
A System.Drawing.PointF that represents the starting point of the curve.
pt2
A System.Drawing.PointF that represents the first control point for the curve.
pt3
A System.Drawing.PointF that represents the second control point for the curve.
pt4
A System.Drawing.PointF that represents the endpoint of the curve.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also