Reminders Object
Outlook Developer Reference |
Contains a collection of all the Reminder objects in a Microsoft Outlook application that represent the reminders for all pending items.
Remarks
Use the Application object's Reminders property to return the Reminders collection. Use Reminders(
index
), where
index
is the name or ordinal value of the reminder, to return a single Reminder object.
Reminders are created programmatically when a new Microsoft Outlook item is created with a reminder. For example, a reminder is created when an AppointmentItem object is created and the AppointmentItem object's ReminderSet property is set to True.
Example
The following example displays the captions of each reminder in the list.
Visual Basic for Applications |
---|
|
The following example creates a new appointment item and sets the ReminderSet property to True, adding a new Reminder object to the Reminders collection.
Visual Basic for Applications |
---|
|
See Also