Count Property
      
 

Description

Returns total number of features 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 XMPPFeatures.

Remarks

You can use this property to check for total number of features 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.Features.Count - 1
    Debug.Print wodXMPP1.Features(i).Name
Next