IReportRowEventArgs.Row

Syntax

Row: Integer;

Description

The Row property returns index of the row, which header has been clicked.

Example

The following example assumes that there is the ReportBox1 object with the ReportBox type.

Sub ReportBox1OnRowClick(Sender: Object; Args: IReportRowEventArgs);

Begin

WinApplication.InformationBox(Args.Row.ToString);

End Sub ReportBox1OnRowClick;

Clicking a row header displays an information message containing the number of this row.

See also:

IReportRowEventArgs