Back to product page

Count property


Returns total number of files in the collection.

Type

Integer

Syntax

  • Basic
object.Count [= value]
The Count(object,value) syntax has these parts:
objectAn expression evaluating to an object of type XMPPFiles
valueA Integer value.

Remarks

You can use this property to check for total number of Files available in the collection. It is also usefull for iterating thru the collection. For example (VB code):
 
Dim i As Integer
For i = 0 To wodXMPP1.Files.Count - 1
 Debug.Print wodXMPP1.Files(i).Name
Next


Platforms

Windows