Using c# in VSTO for Excel, how I know that AutoSave is On or Off? My document is on SharePoint so I need to force AutoSave true for all the users to see the last update doc.
Try:
ActiveWorkbook.AutoSaveOn = False //dosen´t exist
Globals.ThisAddIn.Application.ActiveWorkbook.AutoUpdateSaveChanges; //throws exception
Tks