The ReminderCollection is a collection of all Reminder objects that represents the reminders for all pending items.

Namespace:  C1.C1Schedule
Assembly:  C1.Silverlight.Schedule (in C1.Silverlight.Schedule.dll)

Syntax

C#
public class ReminderCollection : C1ObservableCollection<Reminder>, 
	IDisposable
Visual Basic
Public Class ReminderCollection _
	Inherits C1ObservableCollection(Of Reminder) _
	Implements IDisposable

Remarks

Use the Reminders property to get a reference to the Reminders collection. Reminders are created programmatically when a new Appointment object is created with a reminder. For example, a reminder is created when an Appointment object is created and the ReminderSet property is set to true.

Inheritance Hierarchy

System..::..Object
  System.Collections.ObjectModel..::..Collection<(Of <(<'Reminder>)>)>
    C1.C1Schedule..::..C1ObservableCollection<(Of <(<'Reminder>)>)>
      C1.C1Schedule..::..ReminderCollection

See Also