_Folders.GetNext Method

Definition

Returns the next object in the Folders collection.

public:
 Microsoft::Office::Interop::Outlook::MAPIFolder ^ GetNext();
public Microsoft.Office.Interop.Outlook.MAPIFolder GetNext ();
Public Function GetNext () As MAPIFolder

Returns

A Folder object that represents the next object contained by the collection.

Remarks

It returns Nothing if no next object exists, for example, if already positioned at the end of the collection.To ensure correct operation of the GetFirst(), GetLast(), GetNext, and GetPrevious() methods in a large collection, call GetFirst before calling GetNext on that collection, and call GetLast before calling GetPrevious. To ensure that you are always making the calls on the same collection, create an explicit variable that refers to that collection before entering the loop.

Applies to