Reminder Interface

Represents an Outlook reminder.

Namespace:  Microsoft.Office.Interop.Outlook
Assembly:  Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)

Syntax

'Declaration
<GuidAttribute("000630B0-0000-0000-C000-000000000046")> _
<CoClassAttribute(GetType(ReminderClass))> _
Public Interface Reminder _
    Inherits _Reminder
'Usage
Dim instance As Reminder
[GuidAttribute("000630B0-0000-0000-C000-000000000046")]
[CoClassAttribute(typeof(ReminderClass))]
public interface Reminder : _Reminder

Remarks

This is a .NET interface derived from a COM coclass that is required by managed code for interoperability with the corresponding COM object. Use this derived interface to access all method, property, and event members of the COM object. However, if a method or event you want to use shares the same name under the same COM object, cast to the corresponding primary interface to call the method, and cast to the latest events interface to connect to the event. Refer to this topic for information about the COM object. For information about the method and property members of the COM object, see _Reminder.

Reminders allow users to keep track of upcoming appointments by scheduling a pop-up dialog box to appear at a given time. In addition to appointments, reminders can occur for tasks, contacts and e-mail messages.

Use Reminders (index), where index is the name or index number of the reminder, to return a single Reminder object.

Reminders are created programmatically when a new Microsoft Outlook item, such as an AppointmentItem object, is created and the item 's ReminderSet property is set to True.

Use the Reminders collection's Remove method to remove a Reminder object from the collection. Once a reminder is removed from its associated item, the AppointmentItem object's ReminderSet property is set to False.

See Also

Reference

Reminder Members

Microsoft.Office.Interop.Outlook Namespace