Item

DocumentTableColumnCollection indexer (1 of 2)

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

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

Return Value

A DocumentTableColumn instance from the collection at the specified index.

See Also


DocumentTableColumnCollection indexer (2 of 2)

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

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

Return Value

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

See Also