Skip to main content

AppointmentStatusType Enum

Lists the statuses for appointments.

Namespace: DevExpress.XtraScheduler

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

#Declaration

public enum AppointmentStatusType

#Members

Name Description
Free

This status means that a person is in the office and is available. The strip is colored white.

AppointmentStatusType_Free

Tentative

This status means that a person is in the office and is tentatively available. The strip is colored green.

AppointmentStatusType_Tentative

Busy

This status means that a person is in the office but is unavailable. The strip is colored blue.

AppointmentStatusType_Busy

OutOfOffice

This status means that a person is out of the office and is unavailable. The strip is colored red.

AppointmentStatusType_OutOfOffice

WorkingElsewhere
Custom

This status represents all custom statuses added to the AppointmentStorage.Statuses collection. Its color is specified by the AppointmentStatus.Color property.

#Passed To

You can pass AppointmentStatusType values to the AppointmentStatusBase.Type property.

#Remarks

Use the AppointmentStatusType enumeration's members to specify the status of an Appointment. This enumeration's values are used by the AppointmentStatusBase.Type property.

See Also