The EventPlugins collection object is a collection of EventPlugin objects. The EventPlugins collection object has the following properties.
Properties | Read/Write | Description |
Item | R | Indicates a specific element of the collection object. |
Count | R | 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
See Also
© 1996-1998 Microsoft Corporation. All rights reserved.