contains method

contains

Returns a value indicating whether this collection contains a column with the specified name.

Returns

A value indicating whether this collection contains a column with the specified name.

def contains(self, name):
    ...
Parameter Type Description
name str The case-insensitive name of a column to look for.

contains

Returns a value indicating whether this collection contains the specified column.

Returns

A value indicating whether this collection contains the specified column.

def contains(self, column):
    ...
Parameter Type Description
column DocumentTableColumn A column to look for.

See Also