CalendarView for WinForms
DrawBeziers メソッド

C1.Win.C1Input.4.5.2 アセンブリ > C1.Framework.Drawing.Gdi 名前空間 > Graphics クラス : DrawBeziers メソッド
A Pen indicate the draw-style of Bezier curve
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.
Draw the special Bezier curve on current Graphics by using the special pen.
シンタックス
'宣言
 
Public Sub DrawBeziers( _
   ByVal pen As Pen, _
   ByVal points() As System.Drawing.Point _
) 
public void DrawBeziers( 
   Pen pen,
   System.Drawing.Point[] points
)

パラメータ

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.
例外
例外解説
Defines an exception class to handle the system error.
解説

DrawBeziers draws cubic Bzier curves by using the endpoints and control points specified by the points parameter. The first curve is drawn from the first point to the fourth point by using the second and third points as control points. Each subsequent curve in the sequence needs exactly three more points: the ending point of the previous curve is used as the starting point, the next two points in the sequence are control points, and the third is the ending point.

Any extra points are ignored. To draw a line with more points, divide the data into groups that have less than the maximum number of points and call the function for each group of points. Remember to connect the line segments.

参照

Graphics クラス
Graphics メンバ