Appointment Constructors
An appointment in the scheduler control.Name | Parameters | Description |
---|---|---|
Appointment() | none | Initializes a new instance of the Appointment class with default settings. |
Appointment |
type | Initializes a new instance of the Appointment class of the specified type. |
Appointment |
type, start, end | Initializes a new instance of the Appointment class with the specified type, start date and end date. |
Appointment |
type, start, end, subject | Initializes a new instance of the Appointment class with the specified type, start date, end date and subject. |
Appointment |
type, start, duration | Initializes a new instance of the Appointment class with the specified type, start date, and duration. |
Appointment |
type, start, duration, subject | Initializes a new instance of the Appointment class with the specified type, start date, duration and subject. |
Appointment |
type, start, duration, subject, id | Initializes a new instance of the Appointment class with the specified type, start date, duration, subject and identifier. |
Appointment |
start, end | Initializes a new instance of the Appointment class with the specified start date and end date. |
Appointment |
start, end, subject | Initializes a new instance of the Appointment class with the specified start date, end date and subject. |
Appointment |
start, duration | Initializes a new instance of the Appointment class with the specified start date and duration. |
Appointment |
start, duration, subject | Initializes a new instance of the Appointment class with the specified start date, duration and subject. |
See Also