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

DashboardDesigner.DashboardSaved Event

Allows to obtain the path to the dashboard XML definition before and after the save operation.

Namespace: DevExpress.DashboardWin

Assembly: DevExpress.Dashboard.v19.1.Win.dll

Declaration

public event DashboardSavedEventHandler DashboardSaved

Event Data

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

Property Description
Dashboard Gets the saved dashboard.
NewFileName Gets the path to the dashboard XML definition after the save operation.
OldFileName Gets the path to the dashboard XML definition before the save operation.

Remarks

The DashboardSaved event is raised when an end-user saves the dashboard.

Use the DashboardSavedEventArgs.NewFileName property to obtain the path to the file to which the dashboard was saved. The DashboardSavedEventArgs.OldFileName property allows you to determine the path to the file from which the dashboard was loaded.

See Also