Skybound.Gecko.GeckoWebBrowser.OnShowContextMenu C# (CSharp) Method

OnShowContextMenu() protected method

Raises the ShowContextMenu event.
protected OnShowContextMenu ( GeckoContextMenuEventArgs e ) : void
e GeckoContextMenuEventArgs The data for the event.
return void
        protected virtual void OnShowContextMenu(GeckoContextMenuEventArgs e)
        {
            if (((GeckoContextMenuEventHandler)this.Events[ShowContextMenuEvent]) != null)
                ((GeckoContextMenuEventHandler)this.Events[ShowContextMenuEvent])(this, e);
        }