|
|
RDORecentFolder
object represents a folder recently used by Outlook to move messages to.
Returned by:
RDORecentFolders
The example below list the names of
the recent folders used by Outlook. If the folder no longer exists, an exception
will be raised
|
Set
Session = CreateObject("Redemption.RDOSession")
Session.MAPIOBJECT = Application.Session.MAPIOBJECT
for
each
recent
in
Session.RecentFolders
debug.Print recent.Folder.Name
next
|
Properties
|
Derived from:
IDispatch
|
|
Properties |
|
Folder
|
RDOFolder, read-only.
Returns RDOFolder that represents the recent
folder. If the folder no longer exists, an error will be raised.
|
|
FolderEntryId
|
String, read-only.
The entry id of the recent folder.
|
|
FolderName
|
String, read-only.
The name of the recent folder.
|
|
StoreEntryId
|
String, read-only.
The store entry id of the recent folder.
|
|
|
|
|