Microsoft.VisualStudio.Language.Spellchecker.SpellAddRemoveLanguageSmartTagAction.Invoke C# (CSharp) Method

Invoke() public method

This method is executed when action is selected in the context menu.
public Invoke ( ) : void
return void
        public void Invoke()
        {
            var window = new AddRemoveWindow();
            window.Width = 500;
            window.Height = 600;
            window.Show();
        }
SpellAddRemoveLanguageSmartTagAction