Count Property
      
 

Description

Returns total number of services 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 XMPPServices.

Remarks

Count property returns total amount of service items in Services collection. This is particuliarly helpfull if you wish to iterate thru the collection.

For example (VB code)
 

Dim i As Integer
For i = 0 To wodXMPP1.Services.Count - 1
    Debug.Print wodXMPP1.Services(i).Name
Next