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] 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 the Visual Basic and VBScript. It is a standard property used to support enumerating collections, such as the
For Each Obj in Collection ' Next Obj
syntax in Visual Basic.
Sub EnumBodyPartsAndXXX( iBp as CDO.IBodyPart ) Dim iBp_local as IBodyPart Dim iBps as IBodyParts Set iBps = iBp.BodyParts For Each iBp_local in iBps ' Code here. Next iBp End Sub