Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxSchedulerAppointmentMappings.RecurrenceInfo Property

Maps information about an appointment’s recurrence rule.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
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