IRDOAddressListsCollection object |
IRDOAddressListsCollection represents
a static collection of the RDOAddressList
objects .
Returned by:
RDOExchangeAccount.AllAddressLists
The example below prints out names of
all address lists of each Exchange account in the profile.
set Session = CreateObject("Redemption.RDOSession")
Session.MAPIOBJECT = Application.Session.MAPIOBJECT
set Accounts = Session.Accounts
for each Account in Accounts
if Account.AccountType = 3 Then 'atExchange - we have
RDOExchangeAccount object
for each AE in Account.AllAddressLists
Debug.Print
AE.Name
next
end if
next |
Properties
Methods
|
Derived from:
IDispatch
|
|
Properties |
|
Count
|
Integer, read-only.
Returns the number of RDOAddressList
objects in the collection.
|
|
|
Methods |
|
Item(Index)
|
Returns RDOAddressList obejct with the
specified index (1 through Count).
|
|
|