Count Property
      
 

Description

Returns total number of files in the collection.


Property type

An Integer value.  


Syntax

object.Count



The Count Property syntax has these parts:

Part Description
object An expression evaluating to an object of type XMPPFiles.

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