Item

DocumentTableCollection indexer (1 of 2)

Gets a DocumentTable instance from the collection at the specified index.

public DocumentTable this[int index] { get; }
Parameter Description
index The zero-based index of the table to return.

Return Value

A DocumentTable instance from the collection at the specified index.

See Also


DocumentTableCollection indexer (2 of 2)

Gets a DocumentTable instance with the specified name from the collection.

public DocumentTable this[string name] { get; }
Parameter Description
name The case-insensitive name of the table to return.

Return Value

A DocumentTable instance with the specified name from the collection or null if such an instance does not exist.

See Also