Row: Integer;
The Row property returns index of the row, which header has been left-clicked.
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: