System.Drawing.Imageを現在のドキュメントの 
Bodyの現在のページ上の指定位置に追加して解決します。
 
            
            
            シンタックス
            
            
            
            
            '宣言
 
Public Overloads Sub RenderDirectImage( _
   ByVal  As Unit, _
   ByVal  As Unit, _
   ByVal  As System.Drawing.Image, _
   ByVal  As System.Object, _
   ByVal  As System.Object, _
   ByVal  As ImageAlign _
) 
             
        
            
            '使用法
 
Dim instance As C1PrintDocument
Dim x As Unit
Dim y As Unit
Dim image As System.Drawing.Image
Dim width As System.Object
Dim height As System.Object
Dim imageAlign As ImageAlign
 
instance.RenderDirectImage(x, y, image, width, height, imageAlign)
             
        
            
            public void RenderDirectImage( 
   Unit ,
   Unit ,
   System.Drawing.Image ,
   System.object ,
   System.object ,
   ImageAlign 
)
             
        
             
        
            パラメータ
- x
 
- 画像のレンダリング位置の水平(X)座標( autoは使用不可)。
 - y
 
- 画像のレンダリング位置の垂直(Y)座標( autoは使用不可)。
 - image
 
- レンダリングする画像。
 - width
 
- 画像の幅( nullの場合は autoを使用)。
 - height
 
- 画像の高さ( nullの場合は autoを使用)。
 - imageAlign
 
- 使用する画像配置。
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            参照