RDORecentFolders object

 

RDORecentFolders collection represents the last 10  folders used by Outlook to move messages to.

 

Returned by:

RDOSession.RecentFolders

 

The example below list the names of the recent folders used by Outlook.

Set Session = CreateObject("Redemption.RDOSession")

Session.MAPIOBJECT = Application.Session.MAPIOBJECT

for each recent in Session.RecentFolders

  debug.Print recent.FolderName

next

 

Properties

Methods

 


Derived from: IDispatch


Properties


Count
Integer, read-only. Number of recently used folders in the colleciton.
Outlook remembers up to 10 recent folders
 

Methods


Item(Index)
Returns RDORecentFolder object with the given index (1 through Count).