Gets the number of elements actually contained in the
DocumentCollection.
Syntax
Remarks
Example
The following code example shows the value of the
Count property.
| C# | Copy Code |
|---|
// get all documents from page
DocumentCollection docCol = tab.AllDocuments;
// get count
int count = docCol.Count; |
| PHP | Copy Code |
|---|
// get all documents from page
$docCol = $tab->AllDocuments;
// get count
$count = $docCol->Count; |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also