矩形の幅と高さ、その描画に使用される 
LineDef、および塗りつぶしブラシを割り当てて、 
RenderRoundRectangleクラスの新しいインスタンスを初期化します。矩形の位置は、現在の 
RenderRoundRectangleの位置に設定されます。丸みのある角の描画に使用される楕円のディメンションは、対応する矩形のサイズの 
5%に設定されます。
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Function New( _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As LineDef, _
   ByVal  As System.Drawing.Brush _
)
             
        
            
            '使用法
 
Dim width As Unit
Dim height As Unit
Dim shapeLine As LineDef
Dim shapeFillBrush As System.Drawing.Brush
 
Dim instance As New RenderRoundRectangle(width, height, shapeLine, shapeFillBrush)
             
        
            
            public RenderRoundRectangle( 
   Unit ,
   Unit ,
   LineDef ,
   System.Drawing.Brush 
)
             
        
             
        
            パラメータ
- width
 
- 矩形の幅。
 - height
 
- 矩形の高さ。
 - shapeLine
 
- 矩形の描画に使用される LineDef。
 - shapeFillBrush
 
- 矩形の塗りつぶしに使用されるブラシ。
 
             
            
            
            
            
            
            
            
            
            
            
            
            参照