xistoso
xistoso

Reputation: 55

Where is addin options page in Word VSTO?

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

Answers (1)

Alexey Andrushkevich
Alexey Andrushkevich

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

Related Questions