DrawPolyBezier Method (RawDeviceContext)
In This Topic
Draws one or more Bezier curves.
Syntax
'Declaration
Public Sub DrawPolyBezier( _
ByVal () As Point _
)
public void DrawPolyBezier(
Point[]
)
Parameters
- 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.
See Also