Adds a rectangle to the 
C1PrintDocument.Body of the current document at a specific position on the current page, and resolves it.
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Sub RenderDirectRectangle( _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As LineDef _
) 
             
        
            
            '使用法
 
Dim instance As C1PrintDocument
Dim x As Unit
Dim y As Unit
Dim width As Unit
Dim height As Unit
Dim line As LineDef
 
instance.RenderDirectRectangle(x, y, width, height, line)
             
        
            
            public void RenderDirectRectangle( 
   Unit ,
   Unit ,
   Unit ,
   Unit ,
   LineDef 
)
             
        
             
        
            パラメータ
- x
 
- The horizontal (X) coordinate at which to render the rectangle (cannot be auto).
 - y
 
- The vertical (Y) coordinate at which to render the rectangle (cannot be auto).
 - width
 
- The width of the rectangle.
 - height
 
- The height of the rectangle.
 - line
 
- The LineDef to draw the rectangle with.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照