Reminders Interface

Definition

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

public interface class Reminders : Microsoft::Office::Interop::Outlook::_Reminders, Microsoft::Office::Interop::Outlook::ReminderCollectionEvents_Event
[System.Runtime.InteropServices.Guid("000630B1-0000-0000-C000-000000000046")]
public interface Reminders : Microsoft.Office.Interop.Outlook._Reminders, Microsoft.Office.Interop.Outlook.ReminderCollectionEvents_Event
Public Interface Reminders
Implements _Reminders, ReminderCollectionEvents_Event
Derived
Attributes
Implements

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.

Properties

Application

Returns an Application object that represents the parent Outlook application for the object. Read-only.

(Inherited from _Reminders)
Class

Returns an OlObjectClass constant indicating the object's class. Read-only.

(Inherited from _Reminders)
Count

Returns an Integer (int in C#) value indicating the count of objects in the specified collection. Read-only.

(Inherited from _Reminders)
Item[Object]

Returns a Reminder object from the collection.

(Inherited from _Reminders)
Parent

Returns the parent Object of the specified object. Read-only.

(Inherited from _Reminders)
Session

Returns the NameSpace object for the current session. Read-only.

(Inherited from _Reminders)

Methods

GetEnumerator()

This member is inherited from the base type of the parent interface.

(Inherited from _Reminders)
Remove(Object)

Removes an object from the collection.

(Inherited from _Reminders)

Events

BeforeReminderShow

Occurs before the Reminder dialog box is displayed.

(Inherited from ReminderCollectionEvents_Event)
ReminderAdd

Occurs after a reminder is added.

(Inherited from ReminderCollectionEvents_Event)
ReminderChange

Occurs after a reminder has been modified.

(Inherited from ReminderCollectionEvents_Event)
ReminderFire

Occurs before the reminder is executed.

(Inherited from ReminderCollectionEvents_Event)
ReminderRemove

Occurs when a Reminder object has been removed from the collection.

(Inherited from ReminderCollectionEvents_Event)
Snooze

Occurs when a reminder is dismissed using the Snooze button.

(Inherited from ReminderCollectionEvents_Event)

Applies to