Returns a specific member of a collection object either by position or by key.
Syntax
Clients.Item VarItem
Parameters
VarItem
A numeric or String value that specifies the position of a member of the collection.
Remarks
There are two equivalent ways to retrieve a member object from a collection object, as shown in the following example:
DIM clients as IMSrvClients
clients = MedialServer1.Clients
if clients(0).Id <> clients.Item(0).Id Then
MsgBox("No clients object is available.")
End if
See Also
Clients object, Content Servers object, Content Server Disks object, Titles object, Walkers object
[Previous][Next]