Skip to main content

SchedulerControl.MonthView Property

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

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public MonthView MonthView { get; set; }

#Property Value

Type Description
MonthView

A MonthView object that is the Month View in the scheduling area.

#Remarks

Use the MonthView property to customize the settings of the Month View.

The Month View enables end-users to schedule and display appointments by weeks. In this mode, multiple weeks can be displayed within the scheduling area simultaneously. Use the MonthView.WeekCount property to specify how many weeks should be displayed.

DXScheduler_MonthView

NOTE

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

#Examples

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

See Also