ActiveReports Developer 7
OnDoubleClick Method
See Also 
GrapeCity.ActiveReports.Extensibility.v7 Assembly > GrapeCity.ActiveReports.Extensibility.Rendering.Components Namespace > IReportItem Interface : OnDoubleClick Method

reportItem
The report item double-clicked.
xPosition
The x position of the double-click.
yPosition
The y position of the double-click.
imageMapId
The image map ID>
button
The button that was double-clicked.

Glossary Item Box

Wrapper for the OnDoubleClick event.

Syntax

Visual Basic (Declaration) 
Function OnDoubleClick( _
   ByVal reportItem As IReportItem, _
   ByVal xPosition As System.Integer, _
   ByVal yPosition As System.Integer, _
   ByVal imageMapId As System.String, _
   ByVal button As MouseButton _
) As ChangeResult
C# 
ChangeResult OnDoubleClick( 
   IReportItem reportItem,
   System.int xPosition,
   System.int yPosition,
   System.string imageMapId,
   MouseButton button
)

Parameters

reportItem
The report item double-clicked.
xPosition
The x position of the double-click.
yPosition
The y position of the double-click.
imageMapId
The image map ID>
button
The button that was double-clicked.

Return Value

The change result of the double-click.

See Also