IReportObjectEventArgs.Action

Syntax

Action: TabObjectAction;

Description

The Action property returns type of the action executed on the object.

Example

The following example assumes that there is the ReportBox1 object with the ReportBox type.

Sub ReportBox1OnObjectActivate(Sender: Object; Args: IReportObjectEventArgs);

Begin

WinApplication.InformationBox(Args.Action.ToString);

End Sub ReportBox1OnObjectActivate;

After the event occurs, a message informing the user about the type of the executed operation is displayed.

See also:

IReportObjectEventArgs