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

OnDomMouseScroll() protected méthode

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