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

DxSchedulerAppointmentItem.Type Property

Specifies the type of an appointment.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

public SchedulerAppointmentType Type { get; set; }

Property Value

Type Description
SchedulerAppointmentType

A SchedulerAppointmentType enumeration member.

Available values:

Name Description
OneTime

One-time appointment.

Pattern

Appointment that serves as the pattern for other recurring appointments.

Occurrence

Recurring appointment that conforms to the series pattern.

ChangedOccurrence

Recurring appointment that is modified and does not conform to the recurring series pattern.

DeletedOccurrence

Recurring appointment deleted from the series.

Remarks

The appointment type cannot be changed directly - its type is specified by its role (one time, recurring, and so on). The SchedulerAppointmentType enumeration contains all available types.

When you map the Type property to a data field, use the field of the int type. The SchedulerAppointmentType members correspond with int values as follows:

  • OneTime0
  • Pattern1
  • Occurrence2
  • ChangedOccurrence3
  • DeletedOccurrence4
See Also