Returns the TableCol with the specified index (the Ordinal of the column), or null if that TableCol object has not been initialized.

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

Syntax

C#
public TableCol FindCol(
	int index
)
Visual Basic
Public Function FindCol ( _
	index As Integer _
) As TableCol

Parameters

index
Type: System..::..Int32
The 0-based index of the column in the containing table.

Return Value

The TableCol object or null.

Remarks

Physically, columns in a RenderTable are created when they are accessed using the indexer property on the Cols collection. This method may be used to test whether a physical TableCol object exists for a particular column index.

See Also