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

CustomizeVisualViewInfoEventArgs.VisualViewInfo Property

Gets an object which contains information on the visual representation of visual elements displayed in the Scheduler Control, depending on the current active view and group type currently applied to appointments.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v19.1.dll

Declaration

public VisualViewInfoBase VisualViewInfo { get; }

Property Value

Type Description
VisualViewInfoBase

A VisualViewInfoBase class descendant.

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 VisualViewInfo property to access an object that can be used to customize the visualization of the current active view elements displayed in the Scheduler control, when one of the available group types is applied.

Example

This example demonstrates how to handle the SchedulerControl.CustomizeVisualViewInfo event to hide day headers and time ruler headers in the Scheduler Control when the Day View is currently active and the view is grouped by resources. To do this, set the VisualDayViewResourcesBasedViewInfo.ShowDayHeaders and VisualDayViewResourcesBasedViewInfo.ShowTimeRulerHeader properties to false.

private void schedulerControl1_CustomizeVisualViewInfo(object sender, DevExpress.Xpf.Scheduler.CustomizeVisualViewInfoEventArgs e) {
    // Determine whether the currently active view is the Day View and appointments are grouped by resource.
    if (e.VisualViewInfo is VisualDayViewGroupByResource) {
        VisualDayViewGroupByResource dayViewByResource = (VisualDayViewGroupByResource)e.VisualViewInfo;
        // Hide day headers.
       dayViewByResource.ShowDayHeaders = false;
        // Hide time ruler headers.
        dayViewByResource.ShowTimeRulerHeader = false;
    }
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the VisualViewInfo 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