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

OnDomMouseMove() protected method

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