Skip to main content

RecurrenceInfo.AllDay Property

Gets or sets a value indicating if the time interval of the current recurrence range is All-Day.

Namespace: DevExpress.XtraScheduler

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

#Declaration

public bool AllDay { get; set; }

#Property Value

Type Description
Boolean

true if the recurrence's time interval is All-Day; otherwise, false.

#Remarks

An all-day time interval lasts the entire day or days. For example, when setting the recurrence range to three partial-days (from 9:00 AM on 1/1/2011 till 3:00 PM on 1/3/2011) and setting the AllDay property to true, the real values of the RecurrenceInfo.Start and RecurrenceInfo.End properties will be ignored. In this case, the recurrence time interval will be considered to be three entire days (from 1/1/2011 till 1/3/2011). The AllDay property can be helpful when using the minutely or hourly appointment recurrence.

See Also