Gets the TableCell at the intersection of the specified row and column. This property always returns a non-nullTableCell object.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public TableCell this[
	int row,
	int col
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	row As Integer, _
	col As Integer _
) As TableCell
	Get

Parameters

row
Type: System..::..Int32
The 0-based row index.
col
Type: System..::..Int32
The 0-based column index.

Return Value

The cell at the intersection of the specified row and column.

See Also