ITabObjectEventArgs.Object

Syntax

Object: ITabObject;

Description

The Object property returns the object, with which the action has been executed.

Example

Sub TabSheetBox1OnObjectActivate(Sender: Object; Args: ITabObjectEventArgs);
Var
    s: String;
Begin
    s := Args.Object.Id;
End Sub TabSheetBox1OnObjectActivate;

After executing the event the "s" variable will contain the identifier of the object, with which the action has been executed.

See also:

ITabObjectEventArgs