C1.WPF.PrintDocument.4.6.2 Assembly / C1.C1Preview Namespace / TableColCollection Class / FindCol Method
The 0-based index of the column in the containing table.

In This Topic
FindCol Method
In This Topic
Returns the TableCol with the specified index (the Ordinal of the column), or null if that TableCol object has not been initialized.
Syntax
'Declaration
 
Public Function FindCol( _
   ByVal index As Integer _
) As TableCol
 

Parameters

index
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