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

OnDomMouseDown() 보호된 메소드

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