Reputation: 11
I have office web add-in added in my PowerPoint slides (multiple instances of add-in). Need some settings that will be common across all add-in instances. for that tried to use VSTO Add-In and save those in settings file of it. Now the issue is how i can pass those settings to each content add-in instances so i can read those in each add-in instance. OR Is there a way where i can get handle of content add-in's context menu buttons 'Reload', so after any change from VSTO Add-In, can i just call 'Reload'. I can move settings in DB if needed.
Appreciate any insights on this.
Upvotes: 1
Views: 93
Reputation: 33124
You need to store these externally. Settings are scoped to a single Add-in (technically to a single manifest id). From the documentation:
The settings created by using the methods of the Settings object are saved per add-in and per document. That is, they are available only to the add-in that created them, and only from the document in which they are saved.
Upvotes: 0