Gets the TableCol object corresponding to the column at the specified index in the containing RenderTable. Note that a TableCol will be created if it has not been initialized for that column index yet. Use FindCol(Int32) to get a column without creating it.

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

Syntax

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

Parameters

index
Type: System..::..Int32
The column index in the containing table.

Return Value

The TableCol at the specified index in the table.

See Also