Back to product page

Count property


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

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


Platforms

Windows