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

DxSchedulerAppointmentMappings.RecurrenceInfo Property

Maps information about an appointment’s recurrence rule.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public DxSchedulerMapping RecurrenceInfo { get; set; }

Property Value

Type Description
DxSchedulerMapping

Maps the data field to the appointment property.

Remarks

The DxSchedulerAppointmentMappings class object is used to map appointment fields from the data source to appointment properties in the Scheduler. The RecurrenceInfo property maps the recurrence rule.

The appointment’s RecurrenceInfo property is of the DxSchedulerRecurrenceInfo type. The data source field’s value should be a string that starts with the RecurrenceInfo prefix and specifies options that correspond to the DxSchedulerRecurrenceInfo members. The following example demonstrates a sample field value in a correct notation.

<RecurrenceInfo Start="4/23/2020 7:00:00" End="9/23/2020 1:00:00" AllDay="False" DayNumber="1" 
DayOfMonth="0" WeekDays="42" OccurenceCount="19" Frequency="1" Range="2" Type="1" />

Note

Refer to the DxSchedulerRecurrenceInfo class description for more information and an example.

See Also