Columns Property

See Also    Examples    Applies To

Returns a Columns collection containing the Column objects of the Active Table (atb). (Read only)

Property Columns As Columns

atb.Columns

Examples

atb.Columns.Count

Gets the number of columns in atb.

atb.Columns(2)

Gets the value of column 2.

atb.Columns("CUSTOMER_NAME")

Gets the value of the column that is bound to the field "CUSTOMER_NAME".

Note that you may omit "Columns", because it is the default property:

atb("CUSTOMER_NAME")

Gets the value of the column that is bound to the field "CUSTOMER_NAME".