Skip to main content

AppointmentItem.SameDay Property

Gets whether the appointment’s start and end times are on the same day.

Namespace: DevExpress.UI.Xaml.Scheduler

Assembly: DevExpress.UI.Xaml.Scheduler.v21.2.dll

NuGet Package: DevExpress.Uwp.Controls

Declaration

public bool SameDay { get; }

Property Value

Type Description
Boolean

true, if the appointment interval is within a single day; false, if the appointment’s start and end times are on different days.

Remarks

Use the SameDay property to determine whether an appointment that isn’t an all day appointment (whose AllDay property is set to false) starts and ends on the same day.

For all-day appointments, this property returns false. For an appointment that occupies less than a day and ends at midnight, this property returns true.

See Also