PrintDocument for WinForms | ComponentOne
C1.PrintDocument.6 Assembly / C1.C1Preview Namespace / TableColCollection Class / FindCol Method
The 0-based index of the column in the containing table.

In This Topic
    FindCol Method (TableColCollection)
    In This Topic
    Returns the TableCol with the specified index (the TableVector.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
    public TableCol FindCol( 
       int index
    )

    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 RenderTable.Cols collection. This method may be used to test whether a physical TableCol object exists for a particular column index.
    See Also