RenderPolygonを 
UnitPointオブジェクトのコレクションから作成して、現在のページ上のポイント座標で指定された位置にレンダリングします。
が nullの場合は多角形は開いた状態、その以外の場合は閉じた状態です。
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Sub RenderDirectPolygon( _
   ByVal  As System.Collections.IEnumerable, _
   ByVal  As LineDef, _
   ByVal  As System.Drawing.Brush _
) 
             
        
            
            '使用法
 
Dim instance As C1PrintDocument
Dim points As System.Collections.IEnumerable
Dim line As LineDef
Dim fillBrush As System.Drawing.Brush
 
instance.RenderDirectPolygon(points, line, fillBrush)
             
        
            
            public void RenderDirectPolygon( 
   System.Collections.IEnumerable ,
   LineDef ,
   System.Drawing.Brush 
)
             
        
             
        
            パラメータ
- points
 
- UnitPointオブジェクトのコレクション( UnitPointで ないオブジェクトがコレクションに見つかった場合は例外が発生します)。
 - line
 
- 多角形の描画に使用する LineDef。
 - fillBrush
 
- 塗りつぶし色( nullの場合は多角形は開いた状態、その以外の場合は閉じた状態)。
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照