ActiveReports Developer 7
Action Event
See Also 
GrapeCity.ActiveReports.Viewer.Wpf.v7 Assembly > GrapeCity.ActiveReports.Viewer.Wpf Namespace > Viewer Class : Action Event

Glossary Item Box

This event fires when report item with specified action was clicked in the report preview control.

Syntax

Visual Basic (Declaration) 
Public Event Action As System.EventHandler(Of Viewer.ActionEventArgs)
C# 
public event System.EventHandler<Viewer.ActionEventArgs> Action

Event Data

The event handler receives an argument of type Viewer.ActionEventArgs containing data related to this event. The following Viewer.ActionEventArgs properties provide information specific to this event.

PropertyDescription
Action Gets the Action that caused the event.
Cancel (Inherited from System.ComponentModel.CancelEventArgs) 
PageNumber Gets the page number the action happened on.

See Also