In This Topic
Draw the special Bezier curve on current Graphics
by using the special pen.
Syntax
'Declaration
Public Sub DrawBeziers( _
ByVal As Pen, _
ByVal () As Point _
)
public void DrawBeziers(
Pen ,
Point[]
)
Parameters
- pen
- A Pen indicate the draw-style of Bezier curve
- points
- An array of System.Drawing.Pointstructures that contain the endpoints and control points of the curve(s). This value must be one more than three times the number of curves to be drawn, because each Bzier curve requires two control points and an endpoint, and the initial curve requires an additional starting point.
Exceptions
See Also