Platform SDK: Exchange 2000 Server |
[This is preliminary documentation and subject to change.]
Returns an IEnumVariant interface on an enumeration object for the collection. This property is hidden from Microsoft® Visual Basic® and Microsoft® Visual Basic® Scripting Edition (VBScript).
[Visual Basic,VBScript] Used automatically in For Each In constructs [C++] HRESULT get__NewEnum(IUnknown** pVal); [IDL] HRESULT [propget] _NewEnum([out,retval] IUnknown** pVal);
This property is hidden within Visual Basic and VBScript. It is a standard property used to support enumerating collections, such as the
For Each in
construct in Visual Basic.
Dim iAddr as IAddressee Dim iAddrs as IAddressees ... For Each iAddr in iAddrs ' _NewEnum used internally here ... Next iIAddr