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

SchedulerControl.CustomizeDateNavigationBarCaption Event

Handle this event to specify the caption of the Date Navigation Bar control.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.dll

Declaration

public event EventHandler<CustomizeDateNavigationBarCaptionEventArgs> CustomizeDateNavigationBarCaption

Event Data

The CustomizeDateNavigationBarCaption event's data class is CustomizeDateNavigationBarCaptionEventArgs. The following properties provide information specific to this event:

Property Description
Caption Gets or sets a text displayed as a caption in the SchedulerDateNavigationBar control.
Interval Gets the visible date interval of the SchedulerControl which should be indicated in the Date Navigation Bar control.

Example

CustomizeDateNavigationBarCaptionEvent

The image illustrates how the text in the Date Navigation Bar control is changed by handling the SchedulerControl.CustomizeDateNavigationBarCaption event.

    scheduler.CustomizeDateNavigationBarCaption += scheduler_CustomizeDateNavigationBarCaption;
    scheduler.ActiveView.LayoutChanged();
public static void scheduler_CustomizeDateNavigationBarCaption(object sender, CustomizeDateNavigationBarCaptionEventArgs e) {
    e.Caption = String.Format("Displaying dates from {0:D} to {1:D}", e.Interval.Start.Date, e.Interval.End.Date);
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CustomizeDateNavigationBarCaption event.

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