Skybound.Gecko.GeckoWebBrowser.OnDomMouseDown C# (CSharp) Метод

OnDomMouseDown() защищенный Метод

Raises the DomMouseDown event.
protected OnDomMouseDown ( GeckoDomMouseEventArgs e ) : void
e GeckoDomMouseEventArgs The data for the event.
Результат void
        protected virtual void OnDomMouseDown(GeckoDomMouseEventArgs e)
        {
            if (((GeckoDomMouseEventHandler)this.Events[DomMouseDownEvent]) != null)
                ((GeckoDomMouseEventHandler)this.Events[DomMouseDownEvent])(this, e);
        }