Skybound.Gecko.GeckoWebBrowser.OnDomMouseScroll C# (CSharp) 메소드

OnDomMouseScroll() 보호된 메소드

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