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

In This Topic
    AppointmentList Class
    In This Topic
    The AppointmentList is a sortable collection of Appointment objects.
    Object Model
    AppointmentList Class
    Syntax
    'Declaration
     
    
    <DefaultMemberAttribute("Item")>
    <DebuggerTypeProxyAttribute(System.Collections.Generic.Mscorlib_CollectionDebugView`1)>
    <DebuggerDisplayAttribute("Count = {Count}")>
    Public Class AppointmentList 
       Inherits System.Collections.ObjectModel.Collection(Of Appointment)
    [DefaultMember("Item")]
    [DebuggerTypeProxy(System.Collections.Generic.Mscorlib_CollectionDebugView`1)]
    [DebuggerDisplay("Count = {Count}")]
    public class AppointmentList : System.Collections.ObjectModel.Collection<Appointment> 
    Remarks
    The AppointmentList is not guaranteed to be sorted. You must sort the AppointmentList before performing operations that require the AppointmentList to be sorted.
    Inheritance Hierarchy

    System.Object
       System.Collections.ObjectModel.Collection<T>
          C1.C1Schedule.AppointmentList

    See Also