Skybound.Gecko.GeckoWebBrowser.OnDomMouseUp C# (CSharp) 메소드

OnDomMouseUp() 보호된 메소드

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