Previous | Next |
The EventPlugins collection object is a collection of EventPlugin objects. The EventPlugins collection object has the following properties.
Properties | Access | Description |
Item | Read Only | Indicates a specific element of the collection object. |
Count | Read Only | Returns the number of EventPlugin objects in the collection. |
Example
The following example code displays the description of each EventPlugin object in the collection in message boxes:
For i=1 to CInt(NSUnicastMgr1.EventPlugins.Count)
MsgBox (NSUnicastMgr1.EventPlugins.Item[i-1].Description)
Next
Previous | Next |