Skip to main content
A newer version of this page is available. .

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.v19.1.dll

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>

The following code snippets (auto-collected from DevExpress Examples) contain references to the FullWeekView property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also