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

OnDomMouseOver() protected méthode

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