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

OnDomMouseUp() protected méthode

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