DateAppointmentsCollection Constructor(DateTime,DateTime,IList<Appointment>,Boolean)
In This Topic
Initializes a new instance of the
DateAppointmentsCollection collection for the specified date range with appointment from the specified
C1.Schedule.AppointmentCollection collection.
Syntax
'Declaration
Public Function New( _
ByVal As System.Date, _
ByVal As System.Date, _
ByVal As System.Collections.Generic.IList(Of Appointment), _
ByVal As System.Boolean _
)
public DateAppointmentsCollection(
System.DateTime ,
System.DateTime ,
System.Collections.Generic.IList<Appointment> ,
System.bool
)
Parameters
- start
- The System.DateTime value representing the beginning of the date range.
- end
- The System.DateTime value representing the end of the date range.
- appointments
- The System.Collections.Generic.IList`1 list of appointments.
- includeEmptyDays
- The System.Boolean value specifying whether to include days without appointments into collection.
See Also