Previous | Next |
Returns a Client object as specified by the Index value.
Syntax
NSUnicastMgr.Clients.Item( Index )
Remarks
Item is the default property for this object, and it need not be specified explicitly. Note the two equivalent forms of syntax in the following example.
Example
' Display port ID of the first client
MsgBox (NSUnicastMgr.Clients.Item[0].PortID)
' Display port ID of the last client
MsgBox (NSUnicastMgr.Clients[NSUnicastMgr.Count – 1].PortID)
Previous | Next |