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

DashboardInMemoryStorage.DashboardSave Event

Allows you to handle the process of saving a dashboard to the DashboardInMemoryStorage.

Namespace: DevExpress.DashboardWeb

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

Declaration

public event DashboardSaveEventHandler DashboardSave

Event Data

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

Property Description
DashboardId Gets the dashboard identifier.
DashboardXml Gets the dashboard XML definition.

Remarks

The DashboardInMemoryStorage.DashboardSave event allows you to handle the process of saving a dashboard to the DashboardInMemoryStorage. The SaveDashboardEventArgs.DashboardId property returns the identifier of the currently processed dashboard, while the SaveDashboardEventArgs.DashboardXml property returns the dashboard XML definition.

See Also