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

WeekViewAppointmentDisplayOptions.ShowBordersForSameDayAppointments Property

Gets or sets a value which specifies if left and right borders are shown for same day appointments in the Week view.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.1.Core.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public virtual bool ShowBordersForSameDayAppointments { get; set; }

Property Value

Type Default Description
Boolean **false**

true to show left and right borders for same day appointments; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowBordersForSameDayAppointments
WinForms Controls MonthView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
FullWeek
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
HorizontalWeek
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
WeekView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
ASP.NET Bootstrap Controls BootstrapMonthView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
BootstrapWeekView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
ASP.NET Web Forms Controls MonthView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
WeekView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
MVCxSchedulerMonthView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments
MVCxSchedulerWeekView
.AppointmentDisplayOptions.ShowBordersForSameDayAppointments

Remarks

By default, same day appointments (appointments which Appointment.SameDay property returns true) don’t have left and right borders. If you want them to be shown, set the ShowBordersForSameDayAppointments property to true.

Note

The ShowBordersForSameDayAppointments property, set to true, allows appointment resizing in the WeekView, so that its start(end) time is extended to the start(end) of the day respectively. This behavior is usually undesirable, so use the ShowBordersForSameDayAppointments property with care.

WeekView.ShowBordersForSameDayAppointments.png

See Also