MonthView.WeekCount Property
Gets or sets the number of weeks that are simultaneously displayed in the Month View.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
[XtraSerializableProperty]
[DefaultValue(5)]
public int WeekCount { get; set; }
<XtraSerializableProperty>
<DefaultValue(5)>
Public Property WeekCount As Integer
Property Value
| Type | Default | Description |
|---|---|---|
| Int32 | 5 |
A positive integer value that specifies the number of weeks displayed in the Month View. |
Remarks
Use the WeekCount property to specify the number of weeks simultaneously displayed in the Month View starting from the week that contains the SchedulerControl.Start date.
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