Appointment.Type Property
In This Article
Gets the type of the appointment.
Namespace: DevExpress.XtraScheduler
Assembly: DevExpress.XtraScheduler.v14.2.Core.dll
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
Appointment |
Normal |
An Appointment |
#Remarks
Note that you cannot change the appointment's type directly. The type of the appointment is specified by its role (normal, recurring, changed from recurring series, etc.). All available types are listed in the AppointmentType enumeration.
When you map the Appointment.Type property to the data field, use a field of the int type. The AppointmentType members are enumerated as follows:
- Normal = 0
- Pattern = 1
- Occurrence = 2
- ChangedOccurrence = 3
- DeletedOccurrence = 4
See Also