Scheduler for UWP | ComponentOne
C1.C1Schedule Namespace / ReminderCollection Class
Members

In This Topic
    ReminderCollection Class
    In This Topic
    The ReminderCollection is a collection of all Reminder objects that represents the reminders for all pending items.
    Object Model
    ReminderCollection Class
    Syntax
    'Declaration
     
    
    <DefaultMemberAttribute("Item")>
    <DebuggerTypeProxyAttribute(System.Collections.Generic.Mscorlib_CollectionDebugView`1)>
    <DebuggerDisplayAttribute("Count = {Count}")>
    Public Class ReminderCollection 
       Inherits C1.C1Schedule.C1ObservableCollection(Of Reminder)
    [DefaultMember("Item")]
    [DebuggerTypeProxy(System.Collections.Generic.Mscorlib_CollectionDebugView`1)]
    [DebuggerDisplay("Count = {Count}")]
    public class ReminderCollection : C1.C1Schedule.C1ObservableCollection<Reminder> 
    Remarks
    Use the C1ScheduleStorage.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<T>
          C1.C1Schedule.C1ObservableCollection<T>
             C1.C1Schedule.ReminderCollection

    See Also