GrapeCity ActiveReports for .NET 14.0J
DrawImage(Image,Single,Single,Single,Single,String) メソッド
使用例 

GrapeCity.ActiveReports.Document アセンブリ > GrapeCity.ActiveReports.Document.Section 名前空間 > Page クラス > DrawImage メソッド : DrawImage(Image,Single,Single,Single,Single,String) メソッド
ページ上に描画するSystem.Drawing.Image。
画像の左端の座標(インチ単位)。

画像の上端の座標(インチ単位)。

画像の幅(インチ単位)。
画像の高さ(インチ単位)。
ハイパーリンクURL。
指定した画像をページ上の指定した座標に描画し、この画像領域にハイパーリンクを割り当てます。
シンタックス
'宣言
 
Public Overloads Sub DrawImage( _
   ByVal image As Image, _
   ByVal left As Single, _
   ByVal top As Single, _
   ByVal width As Single, _
   ByVal height As Single, _
   ByVal strLink As String _
) 
public void DrawImage( 
   Image image,
   float left,
   float top,
   float width,
   float height,
   string strLink
)

パラメータ

image
ページ上に描画するSystem.Drawing.Image。
left
画像の左端の座標(インチ単位)。
top

画像の上端の座標(インチ単位)。

width
画像の幅(インチ単位)。
height
画像の高さ(インチ単位)。
strLink
ハイパーリンクURL。
使用例
private void arv_Load(object sender, System.EventArgs e)
{
    rptDocument rpt = new rptDocument();
    rpt.Run();
    arv.Document=rpt.Document;
    arv.Document.Pages[0].DrawImage(System.Drawing.Image.FromFile("c:\\logo.gif"), 1, 1, 1, 1, "www.GrapeCity.com");
}
Private Sub arv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles arv.Load
    Dim rpt As New rptDocument
    rpt.Run()
    arv.Document = rpt.Document
    arv.Document.Pages(0).DrawImage(System.Drawing.Image.FromFile("c:\logo.gif"), 1, 1, 1, 1, "www.GrapeCity.com")
End Sub
参照

Page クラス
Page メンバ
オーバーロード一覧