Parameters
- document
Type: document
The document to locate in the DocumentCollection.
Return Value
Type: System.Int32
The zero-based index of the first occurrence of item within the entire DocumentCollection, if found; otherwise, –1.
The following code example demonstrates uses of the IndexOf method.
| C# | Copy Code |
|---|---|
Document doc = tab.MainDocument;
int index = docCol.IndexOf(doc); | |
| PHP | Copy Code |
|---|---|
$doc = $tab->MainDocument; $index = $docCol->IndexOf($doc); | |
The DocumentCollection is searched forward starting at index and ending at the last element.
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family