Skip to main content

SchedulerControl.FullWeekView Property

Provides access to an object that defines the settings of the scheduler’s Full Week View.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public FullWeekView FullWeekView { get; set; }

Property Value

Type Description
FullWeekView

A FullWeekView object representing the Full Week View in the scheduling area.

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

Use the FullWeekView property to customize the settings of the Week View.

The Full Week View enables end-users to schedule and display appointments for the entire week. The scheduling area is divided into seven regions which correspond to the seven week days.

DXScheduler_FullWeekView

Note

To display information using the Full Week View, set the SchedulerControl.ActiveViewType property to SchedulerViewType.FullWeek.

This example demonstrates how to customize the Full Week View within the Scheduler control.

Modify the FullWeekView object accessed via the SchedulerControl.FullWeekView property.

<dxsch:SchedulerControl.OptionsView>
    <dxsch:OptionsView FirstDayOfWeek="Monday" />
</dxsch:SchedulerControl.OptionsView>
<dxsch:SchedulerControl.FullWeekView>
    <dxsch:FullWeekView AllDayAreaScrollBarVisible="True" AppointmentPadding="0" Enabled="True">
        <dxsch:FullWeekView.WorkTime>
            <dxschcore:WorkTimeInterval End="18:0:0" Start="9:0:0"/>
        </dxsch:FullWeekView.WorkTime>
    </dxsch:FullWeekView>
</dxsch:SchedulerControl.FullWeekView>
See Also