ITableCollection module
- class ITableCollection.ITableCollection
Bases:
IDocumentObjectCollection,ICollectionBase,IEnumerableRepresents a collection of tables in a document.
- abstract Add(table: ITable) int
Adds a table to the collection.
- Parameters:
table (ITable) – The table to add.
- Returns:
The index at which the table was added.
- Return type:
int
- abstract Contains(table: ITable) bool
Checks if the collection contains the specified table.
- Parameters:
table (ITable) – The table to check.
- Returns:
True if the table is in the collection, False otherwise.
- Return type:
bool
