AddressEntries.GetPrevious Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the previous object in the AddressEntries collection.
public:
Microsoft::Office::Interop::Outlook::AddressEntry ^ GetPrevious();
public Microsoft.Office.Interop.Outlook.AddressEntry GetPrevious ();
Public Function GetPrevious () As AddressEntry
Returns
An AddressEntry object that represents the previous object contained by the collection.
Remarks
It returns Nothing if no previous object exists, for example, if already positioned at the beginning 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.