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

OnDomMouseUp() protected method

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