TabSheetBox.OnRowClick

Syntax

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

Begin

//set of operators

End Sub TabSheetBoxOnRowClick;

Parameters

Sender is a parameter, indicating the component, in which the event has occurred.

Args is a parameter, which allows to define a row, in which the event has occurred.

Description

The OnRowClick event occurs on mouse click in the table row header.

Example

Executing the example requires this procedure is set as the OnRowClick event handler Ffor the TabSheetBox component named TabSheetBox1.

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

Var

i: Integer;

Begin

i:=Args.Row;

End Sub TabSheetBox1OnRowClick;

After executing the event, the variable «i» will contain the number of the row, in the header of which the mouse button has been pressed.

See also:

TabSheetBox