Skip to main content

Appointment.Type Property

Gets the type of the appointment.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v14.2.Core.dll

#Declaration

[DefaultValue(AppointmentType.Normal)]
public AppointmentType Type { get; }

#Property Value

Type Default Description
AppointmentType

Normal

An AppointmentType enumeration value which specifies the appointment's type.

#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