Skybound.Gecko.GeckoWebBrowser.OnDomMouseDown C# (CSharp) Méthode

OnDomMouseDown() protected méthode

Raises the DomMouseDown event.
protected OnDomMouseDown ( GeckoDomMouseEventArgs e ) : void
e GeckoDomMouseEventArgs The data for the event.
Résultat void
        protected virtual void OnDomMouseDown(GeckoDomMouseEventArgs e)
        {
            if (((GeckoDomMouseEventHandler)this.Events[DomMouseDownEvent]) != null)
                ((GeckoDomMouseEventHandler)this.Events[DomMouseDownEvent])(this, e);
        }