Reputation: 55
In Outlook vsto addin to add an options page i found and used this code:
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
Outlook.Application oOutlook = Globals.ThisAddIn.Application;
oOutlook.OptionsPagesAdd += new Outlook.ApplicationEvents_11_OptionsPagesAddEventHandler(Application_OptionsPagesAdd);
}
Where is addin options page in Word?
Upvotes: 1
Views: 59
Reputation: 6162
There is no such thing for Word Add-On. You can implement your custom window using WinForms or WPF and show it by clicking a button in the add-on's ribbon control.
Upvotes: 2