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

SchedulerRecurrenceRange Enum

Lists values that determine how a range’s end date is specified.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public enum SchedulerRecurrenceRange

#Members

Name Description Value
NoEndDate

The recurrence range has no end date, and the appointment repeats indefinitely. The End and OccurrenceCount property values are ignored.

0

OccurrenceCount

The range ends after its recurrence count exceeds the value specified by the OccurrenceCount property. The End property value is ignored.

1

EndByDate

A recurrent appointment ends after the date specified by the End property. The OccurrenceCount property value is ignored.

2

#Related API Members

The following properties accept/return SchedulerRecurrenceRange values:

#Remarks

A recurrent appointment reoccurs during the period of time called ‘range’. The Start property specifies the range’s start date. Assign a SchedulerRecurrenceRange enumeration value to the Range property to determine how the end date should be specified.

See Also