Version

SaveDashboard Event

Event triggered when a save (or save as) operation is being performed, the handler is responsible for storing the dashboard and notify when the operation is complete using DashboardSaveEventArgs.SaveFinished.
Syntax
'Declaration
 
Public Event SaveDashboard As EventHandler(Of DashboardSaveEventArgs)
public event EventHandler<DashboardSaveEventArgs> SaveDashboard
Event Data

The event handler receives an argument of type DashboardSaveEventArgs containing data related to this event. The following DashboardSaveEventArgs properties provide information specific to this event.

PropertyDescription
IsSaveAs A flag indicating if this event was originated by a 'save' (false) or 'save as' (true) operation.
Name The name of the dashboard being saved.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also