New to Telerik UI for WPF? Download free 30-day trial

Track changes in workbook

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.

bool hasBeenWorkbookModified = false; 
workbook.WorkbookContentChanged += (sender, args) => { hasBeenWorkbookModified = true; } 
In this article