DataPA Enterprise Dashboard Controls API Reference
Saves this dashboard to disk.

Namespace: DataPAEnterpriseDashboard
Assembly: DataPAEnterpriseDashboard (in DataPAEnterpriseDashboard.dll) Version: 1.0.90.0 (1.0.90.0)

Syntax

C#
public bool Save(
	string FileName = "",
	ref string ErrMessage = ""
)
Visual Basic
Public Function Save ( 
	Optional FileName As String = "",
	Optional ByRef ErrMessage As String = ""
) As Boolean
Visual C++
public:
virtual bool Save(
	String^ FileName = L"", 
	String^% ErrMessage = L""
) sealed

Parameters

FileName (Optional)
Type: System..::..String
The fully qualified file name of the file on disk to save the dashboard to. If left blank, the FileName property will be used, unless that is blank when user will be prompted for a filename.
ErrMessage (Optional)
Type: System..::..String%
The error message raised if the save operation fails.

Return Value

Type: Boolean
True if the object is saved to disk.

Remarks