Reminders Interface

Contains a collection of all the Reminder objects in a Microsoft Outlook application that represent the reminders for all pending items.

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

Syntax

'Declaration
<GuidAttribute("000630B1-0000-0000-C000-000000000046")> _
Public Interface Reminders _
    Inherits _Reminders, ReminderCollectionEvents_Event
'Usage
Dim instance As Reminders
[GuidAttribute("000630B1-0000-0000-C000-000000000046")]
public interface Reminders : _Reminders, 
    ReminderCollectionEvents_Event

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 _Reminders. For information about the event members of the COM object, see ReminderCollectionEvents_Event.

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.

See Also

Reference

Reminders Members

Microsoft.Office.Interop.Outlook Namespace