'Declaration
Public Sub DrawBezier( _ ByVal pen As Pen, _ ByVal startPoint As Point, _ ByVal controlPoint1 As Point, _ ByVal controlPoint2 As Point, _ ByVal endPoint As Point _ )
public void DrawBezier( Pen pen, Point startPoint, Point controlPoint1, Point controlPoint2, Point endPoint )
Parameters
- pen
- A Pen indicate the pen used to draw
- startPoint
- A System.Drawing.Point indicate the Bezier curves start point
- controlPoint1
- A System.Drawing.Point indicate the first control point of the Bezier curves
- controlPoint2
- A System.Drawing.Point indicate the second control point of the Bezier curves
- endPoint
- A System.Drawing.Point indicate the line end point