2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
Identify whether workbook is modified or notThe IsCellModified Property of WorkbookImpl class is used to identify whether the cell value in workbook changed or not. When the cell value in the workbook changes, IsCellModified property returns true. You can access this internal property using Reflection. The below code illustrates how to access internal property IsCellModified using Reflection. var wb = spreadsheet.Workbook as WorkbookImpl; BindingFlags bindFlags = BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static; var value = typeof(WorkbookImpl).GetProperty("IsCellModified", bindFlags).GetValue(wb); Sample: WinForms Reference link: https://help.syncfusion.com/windowsforms/spreadsheet/working-with-spreadsheet |
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.