DocumentTableCollection

DocumentTableCollection class

Represents a read-only collection of DocumentTable objects of a particular DocumentTableSet instance.

public class DocumentTableCollection : IEnumerable

Properties

Name Description
Count { get; } Gets the total number of DocumentTable objects in the collection.
Item { get; } Gets a DocumentTable instance from the collection at the specified index. (2 indexers)

Methods

Name Description
Contains(DocumentTable) Returns a value indicating whether this collection contains the specified table.
Contains(string) Returns a value indicating whether this collection contains a table with the specified name.
GetEnumerator() Returns an enumerator to iterate DocumentTable objects of this collection.
IndexOf(DocumentTable) Returns the index of the specified table within this collection.
IndexOf(string) Returns the index of a table with the specified name within this collection.

Remarks

The collection is filled automatically while loading the corresponding tables from a document and can not be modified. However, properties of DocumentTable objects contained within the collection can be modified.

See Also