GrapeCity.ActiveReports.Document.v9 Assembly > GrapeCity.ActiveReports.Document.Section Namespace > Page Class > DrawImage Method : DrawImage(Image,Single,Single,Single,Single,String) Method |
Top position of the image (in inches).
Top position of the image (in inches).
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