Skip to main content

RecurrenceInfo(DateTime) Constructor

Initializes a new instance of the RecurrenceInfo class with the specified start date.

Namespace: DevExpress.XtraScheduler

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

NuGet Package: DevExpress.Scheduler.Core

Declaration

public RecurrenceInfo(
    DateTime start
)

Parameters

Name Type Description
start DateTime

A DateTime value that specifies the start date of the recurrence. This value is assigned to the RecurrenceInfo.Start property.

Remarks

In this case the RecurrenceInfo.OccurrenceCount property will be set to 1, the RecurrenceInfo.End property is set to RecurrenceInfo.Start, the RecurrenceInfo.Range property is set to RecurrenceRange.NoEndDate, and the RecurrenceInfo.Month and RecurrenceInfo.DayNumber properties will be set to the month and day specified by the RecurrenceInfo.Start property, respectively.

See Also