Draws one Bezier curves on current Graphics.
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Sub DrawBezier( _
   ByVal  As Pen, _
   ByVal  As System.Drawing.Point, _
   ByVal  As System.Drawing.Point, _
   ByVal  As System.Drawing.Point, _
   ByVal  As System.Drawing.Point _
) 
             
        
            
            public void DrawBezier( 
   Pen ,
   System.Drawing.Point ,
   System.Drawing.Point ,
   System.Drawing.Point ,
   System.Drawing.Point 
)
             
        
             
        
            パラメータ
- 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
 
            
             
            例外
| 例外 | 解説 | 
| C1.Framework.SystemErrorException | Defines an exception class to handle the system error. | 
 
            
            
            
            
            
            
            
            
            
            
            参照