Removes the element at the specified index of the
DocumentCollection.
Syntax
Parameters
- index
Type: System.Int32
The zero-based index of the document to remove.
Exceptions
Example
The following code shows the
Remove method call
| C# | Copy Code |
|---|
// get all documents from page
DocumentCollection docCol = tab.AllDocuments;
// remove the last document
docCol.Remove(docCol.Count-1); |
| PHP | Copy Code |
|---|
// get all documents from page
$docCol = $tab->AllDocuments;
// remove the last document
$docCol->Remove($docCol->Count-1); |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also