I am currently storing a key value pair in Office.context.documents.settings
using the following function:
Office.context.document.settings.set(name, value);
Once the key-value pair is stored , I am relaunching the add-in and trying to fetch the value using the following function -
Office.context.document.settings.get(name);
But the function is returning null
instead of the proper value. Does the value stored in document settings persist across multiple sessions of an application or does it get refreshed once we close the application?