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

OnDomContextMenu() protected method

Raises the DomContextMenu event.
protected OnDomContextMenu ( GeckoDomMouseEventArgs e ) : void
e GeckoDomMouseEventArgs The data for the event.
return void
        protected virtual void OnDomContextMenu(GeckoDomMouseEventArgs e)
        {
            if (((GeckoDomMouseEventHandler)this.Events[DomContextMenuEvent]) != null)
                ((GeckoDomMouseEventHandler)this.Events[DomContextMenuEvent])(this, e);
        }