PocketPlanner Programmer's Guide

Item.Reminder Property

See Also

Gets or sets the reminder for this item.

Namespace: MindFusion.Scheduling
Assembly: PocketPlanner

 Syntax

C#

public abstract Reminder Reminder { get; set; }

Visual Basic

Public MustOverride Property Reminder As Reminder

 Property Value

An instance of the Reminder class.

 Remarks

If the reminder type is Exact, the ItemReminderTriggered event is raised at the time set in the reminder's Time property. If the reminder type is Leading, the ItemReminderTriggered event is raised certain amount of time prior to the item's StartTime, as specified in the reminder's TimeInterval property.

Note:

Recurring items cannot have leading reminders.

 See Also