Initializes a new instance of the 
RenderArc class, assigning the width, height, and start and sweep angles of the arc. The location of the arc's ellipse is set to the location of the current 
RenderPie.
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Function New( _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As System.Single, _
   ByVal  As System.Single _
)
             
        
            
            '使用法
 
Dim width As Unit
Dim height As Unit
Dim startAngle As System.Single
Dim sweepAngle As System.Single
 
Dim instance As New RenderArc(width, height, startAngle, sweepAngle)
             
        
            
            public RenderArc( 
   Unit ,
   Unit ,
   System.float ,
   System.float 
)
             
        
             
        
            パラメータ
- width
 
- The width of the ellipse containing the arc.
 - height
 
- The height of the ellipse containing the arc.
 - startAngle
 
- The angle, in degrees, clockwise from the X axis to the start of the arc.
 - sweepAngle
 
- The angle, measured in degrees, clockwise from  to the end of the arc.
 
             
            
            
            
            
            
            
            
            
            
            
            
            参照