The AppointmentList is a sortable collection of Appointment objects.

Namespace:  C1.C1Schedule
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
[SerializableAttribute]
public class AppointmentList : Collection<Appointment>
Visual Basic
<SerializableAttribute> _
Public Class AppointmentList _
	Inherits Collection(Of 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<(Of <(<'Appointment>)>)>
    C1.C1Schedule..::..AppointmentList

See Also