Skip to main content
A newer version of this page is available. .

AppointmentType Enum

Lists the types of appointment.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.1.Core.dll

Declaration

public enum AppointmentType

Members

Name Description
Normal

Represents a standard (non-recurring) appointment.

Pattern

Represents the appointment which serves as the pattern for the other recurring appointments. The pattern for recurring appointments is specified via the Appointment.RecurrenceInfo property.

Occurrence

Represents a recurring appointment whose pattern appointment is specified via the Appointment.RecurrencePattern property.

ChangedOccurrence

Represents a recurring appointment, which was changed and now doesn’t satisfy the pattern of the recurring series.

DeletedOccurrence

Represents a recurring appointment which was deleted from the series of other recurring appointments of the same pattern.

Related API Members

The following properties accept/return AppointmentType values:

Library Related API Members
Cross-Platform Class Library Appointment.Type
AppointmentModificationControllerBase.AppointmentType
WPF Controls AppointmentItem.Type
ASP.NET Core Bootstrap Controls IBootstrapSchedulerAppointment.Type

Remarks

Use this enumeration’s members to specify the type of an appointment. This enumeration’s values are used by the Appointment.Type property.

When you map the Appointment.Type property to the data field, use the field of the int type. The AppointmentType members are enumerated as follows:

  • Normal = 0,
  • Pattern = 1,
  • Occurrence = 2,
  • ChangedOccurrence = 3,
  • DeletedOccurrence = 4

The following code snippets (auto-collected from DevExpress Examples) contain references to the AppointmentType enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also