New to Telerik UI for WPF? Start a free 30-day trial
Track changes in workbook
Updated on Sep 24, 2025
| Product Version | Product | Author |
|---|---|---|
| 2020.2.617 | RadSpreadsheet | Tanya Dimitrova |
Environment
| Product Version | 2020.2.617 |
| Product | RadSpreadsheet for WPF |
Description
You need to track whether the content of a Workbook has been modified.
Solution
Use the WorkbookContentChanged event.
C#
bool hasBeenWorkbookModified = false;
workbook.WorkbookContentChanged += (sender, args) => { hasBeenWorkbookModified = true; }