Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
330
Save data in a cell before save workbook
posted

How to save data in a cell before save workbook. 

using (var ms = new MemoryStream())
{
   xamSpreadsheet.Workbook.Save(ms);
   ms.Position = 0;

}

But all latest changes in current cell not saved. Because cell in edit mode. How to end edit mode and save all changes before xamSpreadsheet.Workbook.Save(ms) ?