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

DashboardSavingEventArgs.Command Property

Gets which user action raised the event.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v18.2.Win.dll

Declaration

public DashboardSaveCommand Command { get; }

Property Value

Type Description
DashboardSaveCommand

A DashboardSaveCommand enumeration member that specifies the user action that triggered the event.

Available values:

Name Description
Save

An end-user has called the Save command.

SaveAs

An end-user has called the Save As command.

Remarks

The DashboardDesigner.DashboardSaving event is raised when an end-user selects the Save or Save As command. To determine which if these commands was selected, use the Command property.

To access the dashboard that should be saved, use the DashboardSavingEventArgs.Dashboard property.

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