|
|
RDORssFeeds collection represents RSS
feeds in Outlook .
Returned by:
RDOSession.RssFeeds
The example below reads all RSS feeds
in Outlook and prints their names and remote paths:
|
set Session = CreateObject("Redemption.RDOSession")
Session.MAPIOBJECT = Application.Session.MAPIOBJECT
for each RssFeed in Session.RssFeeds
Debug.Print RssFeed.LocalName & " - " & RssFeed.RemotePath
next
|
|
Properties
Methods
|
Derived from:
IDispatch
|
|
Properties |
|
|
Count |
Integer, read-only. Returns the number of RSS feeds in the collection. |
|
|
Methods |
|
|
Item(Index) |
Returns RDORssFeed object corresponding to
the specified index (1 through Count).
Index - the integer index (1 through Count) of the RSS feed to rerturn.
|
|
|