Skip to main content

GotoDateFormEventArgs(SchedulerViewRepository, DateTime, SchedulerViewType) Constructor

Initializes a new instance of the GotoDateFormEventArgs class with the specified repository of views, date and view type.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public GotoDateFormEventArgs(
    SchedulerViewRepository views,
    DateTime date,
    SchedulerViewType viewType
)

Parameters

Name Type Description
views SchedulerViewRepository

A SchedulerViewRepository object that represents the storage of scheduler views shown in the Go To Date dialog. This value is assigned to the GotoDateFormEventArgs.Views property.

date DateTime

A DateTime value which represents a date shown in the Go To Date dialog. This value is assigned to the GotoDateFormEventArgs.Date property.

viewType SchedulerViewType

A SchedulerViewType enumeration value that represents the type of the scheduler view shown in the Go To Date dialog. This value is assigned to the GotoDateFormEventArgs.SchedulerViewType property.

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.

Instances of the GotoDateFormEventArgs class are automatically created, initialized and passed to the corresponding event handlers.

See Also