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

ISchedulerRecurrenceInfo.Range Property

Specifies the recurrence range’s type.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

SchedulerRecurrenceRange Range { get; set; }

Property Value

Type Description
SchedulerRecurrenceRange

The recurrence range’s type.

Available values:

Name Description
NoEndDate

A recurrent appointment has no end date. Corresponds to 0.

OccurrenceCount

A recurrent appointment ends after its recurrence count exceeds the specified value (the OccurrenceCount property value). Corresponds to 1.

EndByDate

A recurrent appointment ends after the specified date (the End property value). Corresponds to 2.

Remarks

The recurrent appointment reoccurs during the period of time called range. The Start property specifies the range’s start date.

The range’s end date depends on the Range property value.

Range Type

End Date

NoEndDate

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

OccurrenceCount

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

EndByDate

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

Note

See the DxSchedulerRecurrenceInfo class description for more information and an example.

See Also