Reminder Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents an Outlook reminder.
public interface class Reminder : Microsoft::Office::Interop::Outlook::_Reminder
[System.Runtime.InteropServices.Guid("000630B0-0000-0000-C000-000000000046")]
public interface Reminder : Microsoft.Office.Interop.Outlook._Reminder
Public Interface Reminder
Implements _Reminder
- 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 _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(Object) 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.
Properties
Application |
Returns an Application object that represents the parent Outlook application for the object. Read-only. (Inherited from _Reminder) |
Caption |
Returns a String (string in C#) representing the title. Read-only. (Inherited from _Reminder) |
Class |
Returns an OlObjectClass constant indicating the object's class. Read-only. (Inherited from _Reminder) |
IsVisible |
Returns a Boolean (bool in C#) that determines if the reminder is currently visible. Read-only. (Inherited from _Reminder) |
Item |
Returns an Object corresponding to the specified Outlook item. Read-only. (Inherited from _Reminder) |
NextReminderDate |
Returns a Date that indicates the next time the specified reminder will occur. Read-only. (Inherited from _Reminder) |
OriginalReminderDate |
Returns a Date that specifies the original date and time that the specified reminder is set to occur. Read-only. (Inherited from _Reminder) |
Parent |
Returns the parent Object of the specified object. Read-only. (Inherited from _Reminder) |
Session |
Returns the NameSpace object for the current session. Read-only. (Inherited from _Reminder) |
Methods
Dismiss() |
Dismisses the current reminder. (Inherited from _Reminder) |
Snooze(Object) |
Delays the reminder by a specified time. (Inherited from _Reminder) |