com.spire.doc.interfaces
Interface ITableCollection

All Superinterfaces:
ICollectionBase, IDocumentObjectCollection, java.lang.Iterable
All Known Implementing Classes:
TableCollection

public interface ITableCollection
extends IDocumentObjectCollection

Represents a collection of ITable.


Method Summary
 int add(ITable table)
          Adds a table to end of text body.
 boolean contains(ITable table)
          Determines whether the ITableCollection contains a specific value.
 Table get(int index)
          Gets the ITable at the specified index.
 int indexOf(ITable table)
          Determines the index of a specific item in the collection.
 
Methods inherited from interface com.spire.doc.interfaces.ICollectionBase
getCount
 

Method Detail

get

Table get(int index)
Gets the ITable at the specified index.

Specified by:
get in interface IDocumentObjectCollection
Parameters:
index - The index
Returns:
The Table

add

int add(ITable table)
Adds a table to end of text body.

Parameters:
table - the table.
Returns:
The index

indexOf

int indexOf(ITable table)
Determines the index of a specific item in the collection.

Parameters:
table - the table.
Returns:
The index

contains

boolean contains(ITable table)
Determines whether the ITableCollection contains a specific value.

Parameters:
table - the table.
Returns:
if table is found, set to true.