Parameters
- document
Type: document
The document to insert.
- index
Type: System.Int32
The zero-based index at which document should be inserted.
The following code example demonstrates the Insert method, along with various other properties and methods of the DocumentCollection.
| C# | Copy Code |
|---|---|
DocumentCollection docCol = tab.AllDocuments;
Document doc = tab.MainDocument;
if (docCol.Count <= 0) return -1;
int index = docCol.Count / 2;
docCol.Insert(doc,index); | |
| PHP | Copy Code |
|---|---|
$docCol = $tab->AllDocuments; $doc = $tab->MainDocument; if ($docCol->Count <= 0) return -1; $index = $docCol->Count / 2; $docCol->Insert($doc,$index); | |
If index is equal to Count, item is added to the end of DocumentCollection.
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family