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

OnDomMouseOut() protected method

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