IReportCellEventArgs.Column

Syntax

Column: Integer;

Description

The Column property returns index of the column containing the cell, for which the event is generated.

Example

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

Sub ReportBox1OnCellClick(Sender: Object; Args: IReportCellEventArgs);

Begin

WinApplication.InformationBox("row: " + Args.Row.ToString + " column: " + Args.Column.ToString);

End Sub ReportBox1OnCellClick;

Click the cell to display an information message with row and column indexes.

See also:

IReportCellEventArgs