[]
        
(Showing Draft Content)

C1.C1Schedule.Printing.DateAppointmentsCollection.-ctor

DateAppointmentsCollection Constructor

DateAppointmentsCollection(DateTime, DateTime, AppointmentCollection)

Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified AppointmentCollection collection.

Declaration
public DateAppointmentsCollection(DateTime start, DateTime end, AppointmentCollection appointmentCollection)
Parameters
Type Name Description
DateTime start

The DateTime value representing the beginning of the date range.

DateTime end

The DateTime value representing the end of the date range.

AppointmentCollection appointmentCollection

The AppointmentCollection collection for getting appointments from.

DateAppointmentsCollection(DateTime, DateTime, AppointmentCollection, bool, bool)

Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified AppointmentCollection collection.

Declaration
public DateAppointmentsCollection(DateTime start, DateTime end, AppointmentCollection appointmentCollection, bool includeEmptyDays, bool includePrivateAppointments)
Parameters
Type Name Description
DateTime start

The DateTime value representing the beginning of the date range.

DateTime end

The DateTime value representing the end of the date range.

AppointmentCollection appointmentCollection

The AppointmentCollection collection for getting appointments from.

bool includeEmptyDays

The bool value specifying whether to include days without appointments into collection.

bool includePrivateAppointments

The bool value specifying whether to include private appointments into collection.

DateAppointmentsCollection(DateTime, DateTime, AppointmentCollection, CalendarInfo, bool, bool, bool)

Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified AppointmentCollection collection.

Declaration
public DateAppointmentsCollection(DateTime start, DateTime end, AppointmentCollection appointmentCollection, CalendarInfo calendarInfo, bool includeEmptyDays, bool includeWeekends, bool includePrivateAppointments)
Parameters
Type Name Description
DateTime start

The DateTime value representing the beginning of the date range.

DateTime end

The DateTime value representing the end of the date range.

AppointmentCollection appointmentCollection

The AppointmentCollection collection for getting appointments from.

CalendarInfo calendarInfo

The CalendarInfo object containing calendar specific information.

bool includeEmptyDays

The bool value specifying whether to include days without appointments into collection.

bool includeWeekends

The bool value specifying whether to include weekend days into collection.

bool includePrivateAppointments

The bool value specifying whether to include private appointments into collection.

DateAppointmentsCollection(DateTime, DateTime, IList<Appointment>, bool)

Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified AppointmentCollection collection.

Declaration
public DateAppointmentsCollection(DateTime start, DateTime end, IList<Appointment> appointments, bool includeEmptyDays)
Parameters
Type Name Description
DateTime start

The DateTime value representing the beginning of the date range.

DateTime end

The DateTime value representing the end of the date range.

IList<Appointment> appointments

The IList<T> list of appointments.

bool includeEmptyDays

The bool value specifying whether to include days without appointments into collection.

DateAppointmentsCollection(DateTime, DateTime, IList<Appointment>, CalendarInfo, bool, bool)

Initializes a new instance of the DateAppointmentsCollection collection for the specified date range with appointment from the specified AppointmentCollection collection.

Declaration
public DateAppointmentsCollection(DateTime start, DateTime end, IList<Appointment> appointments, CalendarInfo calendarInfo, bool includeEmptyDays, bool includeWeekends)
Parameters
Type Name Description
DateTime start

The DateTime value representing the beginning of the date range.

DateTime end

The DateTime value representing the end of the date range.

IList<Appointment> appointments

The IList<T> list of appointments.

CalendarInfo calendarInfo

The CalendarInfo object containing calendar specific information.

bool includeEmptyDays

The bool value specifying whether to include days without appointments into collection.

bool includeWeekends

The bool value specifying whether to include weekend days into collection.