ActiveReports Developer 7
DrawImage(Image,Single,Single,Single,Single,String,String) Method
See Also 
GrapeCity.ActiveReports.Document.v7 Assembly > GrapeCity.ActiveReports.Document.Section Namespace > Page Class > DrawImage Method : DrawImage(Image,Single,Single,Single,Single,String,String) Method

image
The System.Drawing.Image to draw on the page.
left
Left position of the image (in inches).
top

Top position of the image (in inches).

width
Width of the image (in inches).
height
Height of the image (in inches).
title
Title of the image.
description
Description of the image.

Glossary Item Box

Draws the specified image within the specified coordinates.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub DrawImage( _
   ByVal image As Image, _
   ByVal left As System.Single, _
   ByVal top As System.Single, _
   ByVal width As System.Single, _
   ByVal height As System.Single, _
   ByVal title As System.String, _
   ByVal description As System.String _
) 
C# 
public void DrawImage( 
   Image image,
   System.float left,
   System.float top,
   System.float width,
   System.float height,
   System.string title,
   System.string description
)

Parameters

image
The System.Drawing.Image to draw on the page.
left
Left position of the image (in inches).
top

Top position of the image (in inches).

width
Width of the image (in inches).
height
Height of the image (in inches).
title
Title of the image.
description
Description of the image.

See Also