IndexOf

IndexOf(string)

Returns the index of a column with the specified name within this collection.

public int IndexOf(string name)
Parameter Type Description
name String The case-insensitive name of a column to find.

Return Value

The zero-based index of a column with the specified name, or -1 if the column does not exist in this collection.

See Also


IndexOf(DocumentTableColumn)

Returns the index of the specified column within this collection.

public int IndexOf(DocumentTableColumn column)
Parameter Type Description
column DocumentTableColumn A column to find.

Return Value

The zero-based index of the specified column, or -1 if the column does not exist in this collection.

See Also