Row: Integer;
The Row property returns number of the row for which some event occurred.
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: