Draws a line.
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Sub Line( _
   ByVal  As System.Integer, _
   ByVal  As System.Integer, _
   ByVal  As System.Integer, _
   ByVal  As System.Integer, _
   ByVal  As System.Drawing.Color _
) 
             
        
            
            '使用法
 
Dim instance As GraphicsUtils.GdiDc
Dim x1 As System.Integer
Dim y1 As System.Integer
Dim x2 As System.Integer
Dim y2 As System.Integer
Dim color As System.Drawing.Color
 
instance.Line(x1, y1, x2, y2, color)
             
        
            
            public void Line( 
   System.int ,
   System.int ,
   System.int ,
   System.int ,
   System.Drawing.Color 
)
             
        
             
        
            パラメータ
- x1
 
- y1
 
- x2
 
- y2
 
- color
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照