Skip to main content

DxSchedulerAppointmentMappings.RecurrenceInfo Property

Maps information about an appointment’s recurrence rule.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

public DxSchedulerMapping RecurrenceInfo { get; set; }

Property Value

Type Description
DxSchedulerMapping

Maps the data field to the RecurrenceInfo appointment property.

Remarks

Use the RecurrenceInfo property to map the recurrence rule from the data source to an appointment’s RecurrenceInfo property.

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

"<RecurrenceInfo Id=\"15129fd3-9eb0-4861-8c43-c61844137f17\" Start=\"{0}\" Range=\"0\" 
                Type=\"3\" Frequency=\"1\" Month = \"4\" WeekOfMonth=\"5\" WeekDays=\"2\" />"

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

See Also