ITabRowEventArgs.Row

Syntax

Row: Integer;

Description

The Row property returns number of the row for which some event occurred.

Example

Sub TabSheetBox1OnRowClick(Sender: Object; Args: ITabRowEventArgs);

Var

i: Integer;

Begin

i:=Args.Row;

End Sub TabSheetBox1OnRowClick;

After executing the event, the "i" variable contains the number of the row, in the header of which the mouse button has been pressed.

See also:

ITabRowEventArgs