Skip to main content

RecurrenceInfo.Range Property

Gets or sets the type of the recurrence range.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.Core.dll

NuGet Package: DevExpress.Scheduler.Core

Declaration

public RecurrenceRange Range { get; set; }

Property Value

Type Description
RecurrenceRange

A RecurrenceRange enumeration value that specifies the recurrence’s range type.

Available values:

Name Description
NoEndDate

A recurring appointment will not have an end date.

OccurrenceCount

A recurring appointment will end after its recurrence count exceeds the value specified by the RecurrenceInfo.OccurrenceCount property.

EndByDate

A recurring appointment will end after the date specified by the RecurrenceInfo.End property.

Remarks

The Range property specifies the manner in which the range of recurrence is defined - it sets the time boundaries/limits of the recurrence.

There are three possible scenarios for specifying values for this property:

The following code snippets (auto-collected from DevExpress Examples) contain references to the Range property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Implements

See Also