現在のフラグメントとその子を指定した System.Drawing.Graphics上に描画します。
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Sub Draw( _
   ByVal  As System.Drawing.Graphics, _
   ByVal  As System.Drawing.Rectangle, _
   ByVal  As System.Boolean _
) 
             
        
            
            '使用法
 
Dim instance As RenderFragment
Dim graphics As System.Drawing.Graphics
Dim parentContentBoundsPx As System.Drawing.Rectangle
Dim renderInputControls As System.Boolean
 
instance.Draw(graphics, parentContentBoundsPx, renderInputControls)
             
        
            
            public void Draw( 
   System.Drawing.Graphics ,
   System.Drawing.Rectangle ,
   System.bool 
)
             
        
             
        
            パラメータ
- graphics
 
- 描画先の System.Drawing.Graphicsオブジェクト。
 - parentContentBoundsPx
 
- 親の境界。
 - renderInputControls
 
- 入力コントロールを描画する( RenderInputBaseを参照)場合は true、無視する場合は false。
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照