Platform SDK: Exchange 2000 Server

_NewEnum Property

[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);

Remarks

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.

Example

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