I want to determine in Word (Office 365) if user enables AutoSave option. The purpose of it is to check this option in DocumentBeforeSaveEvent and prevent some actions on auto save enabled. I do this check such way:
Globals.ThisAddIn.Application.ActiveDocument.IsInAutosave
And according to Microsoft documentation this flag should be true in case user enabled autosaving. But it always false. No matter if I open document with already enabled autosave or create new document and save it by switching to autosave=on.
Are there reasons of why IsInAutoSave property does not work? Is there workaround to check if autosave enabled or not? Maybe this settings stored in other object, settings file or registry? Thanks in advance.