Adds an arc to the 
C1PrintDocument.Body of the current document at a specific position on the current page, and resolves it.
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Sub RenderDirectArc( _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As System.Single, _
   ByVal  As System.Single, _
   ByVal  As LineDef _
) 
             
        
            
            '使用法
 
Dim instance As C1PrintDocument
Dim x As Unit
Dim y As Unit
Dim width As Unit
Dim height As Unit
Dim startAngle As System.Single
Dim sweepAngle As System.Single
Dim line As LineDef
 
instance.RenderDirectArc(x, y, width, height, startAngle, sweepAngle, line)
             
        
            
            public void RenderDirectArc( 
   Unit ,
   Unit ,
   Unit ,
   Unit ,
   System.float ,
   System.float ,
   LineDef 
)
             
        
             
        
            パラメータ
- x
 
- The horizontal (X) coordinate at which to render the arc (cannot be auto).
 - y
 
- The vertical (Y) coordinate at which to render the arc (cannot be auto).
 - width
 
- The width of the arc.
 - height
 
- The height of the arc.
 - startAngle
 
- The arc's starting angle (in degrees, measured clockwise from the X axis).
 - sweepAngle
 
- The arc's sweep angle (in degrees, measured clockwise from ).
 - line
 
- The LineDef to draw the arc with.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照