ITabObjectEventArgs.Action

Syntax

Action: TabObjectAction;

Description

The Action property returns the type of the action, performed with the table object.

Example

Sub TabSheetBox1OnObjectActivate(Sender: Object; Args: ITabObjectEventArgs);

Var

i: Integer;

Begin

i := Args.Action;

End Sub TabSheetBox1OnObjectActivate;

After executing the event, the "i" variable will contain the type of the performed action.

See also:

ITabObjectEventArgs