Skip to main content

WorkWeekView.ShowFullWeek Property

Gets or sets a value indicating whether the Work-Week View should show all the days of the week.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public bool ShowFullWeek { get; set; }

#Property Value

Type Description
Boolean

true to show the full week; otherwise, false.

#Remarks

By default, the Work-Week View displays only work days. If that is not the intent, you can force the scheduler to display all the days of the week in this view by changing the ShowFullWeek property value to true.

To define which days of the week are work days, use the SchedulerControl.WorkDays property.

#Examples

This example demonstrates how to customize the Work-Week View within the SchedulerControl. To do this, it is necessary to modify the WorkWeekView object accessed via the SchedulerControl.WorkWeekView property. To specify work days to be displayed within the WorkWeek View, use the SchedulerControl.WorkDays property.

See Also