Back to product page

Count property


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

Remarks

You can use this property to check for total number of features available in the collection. It is also useful 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


Platforms

Windows