ASPxClientSpreadsheet.HasUnsavedChanges Method
In This Article
Indicates whether any unsaved changes are contained in the current document.
#Declaration
TypeScript
HasUnsavedChanges(): boolean
#Returns
Type | Description |
---|---|
boolean |
|
#Remarks
The code sample below demonstrates how to use the HasUnsavedChanges method.
// ...
if (MyClientSpreadsheetName.HasUnsavedChanges()) {
// ...
}
See Also