Count Property
      
 

Description

Returns total number of identities 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 XMPPIdentities.

Remarks

Count property returns total amount of items in XMPPIdentities 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.Identity.Count - 1
    Debug.Print wodXMPP1.Identity(i).Name
Next