Skip to main content

SchedulerControl.DayView Property

Provides access to an object that defines the settings of the scheduler's Day View.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public DayView DayView { get; set; }

#Property Value

Type Description
DayView

A DayView object that is a Day View in the scheduling area.

#Remarks

Use the DayView property to customize the settings of the Day View.

The Day View enables end-users to schedule and display appointments by day. In this mode, multiple days can be displayed within the scheduling area simultaneously. Use the DayView.DayCount property to specify how many days should be displayed.

DXScheduler_DayView

NOTE

To make the SchedulerControl display information using the Day View, set the SchedulerControl.ActiveViewType property to SchedulerViewType.Day.

#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