Skip to main content

DayView.AllDayAreaScrollBarVisible Property

Specifies whether scrolling of the all-day area is enabled, and the corresponding scrollbar is visible in the Day View or Work-Week View.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public bool AllDayAreaScrollBarVisible { get; set; }

#Property Value

Type Description
Boolean

true if the scrollbar for the all-day area is enabled and visible; otherwise, false.

#Remarks

When the AllDayAreaScrollBarVisible is set to true, a vertical scrollbar appears, which enables end-users to scroll the all-day area and see additional all-day appointments. It is helpful when more all-day appointments exist than can be displayed in the current all-day area of the Day View or Work-Week View. Drag the scroll thumb to show hidden appointments.

DXScheduler_AllDayAreaScrollBarVisible

NOTE

You can force all-day events to be displayed in time cells, instead of the all-day area, by setting the DayView.ShowAllDayArea property to false.

#Examples

This example demonstrates how to customize the Day View within the SchedulerControl. To do this, it is necessary to modify the DayView object accessed via the SchedulerControl.DayView property.

See Also