Skip to main content

DashboardDesigner.IsDashboardModified Property

Gets whether the dashboard has been modified since the last save.

Namespace: DevExpress.DashboardWin

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

NuGet Package: DevExpress.Win.Dashboard

Declaration

[Browsable(false)]
public bool IsDashboardModified { get; }

Property Value

Type Description
Boolean

true, if the dashboard has been modified since the last save; otherwise, false.

Remarks

The IsDashboardModified property indicates only changes made in the DashboardDesigner UI. Handle the DashboardDesigner.DashboardClosing event and use its DashboardClosingEventArgs.IsDashboardModified event parameter to specify the modification state of the dashboard based on your requirements.

You can also handle the Dashboard.OptionsChanged event that fires after any option of the Dashboard is changed.

See Also