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

OnDomKeyPress() 보호된 메소드

Raises the DomKeyPress event.
protected OnDomKeyPress ( GeckoDomKeyEventArgs e ) : void
e GeckoDomKeyEventArgs The data for the event.
리턴 void
        protected virtual void OnDomKeyPress(GeckoDomKeyEventArgs e)
        {
            if (((GeckoDomKeyEventHandler)this.Events[DomKeyPressEvent]) != null)
                ((GeckoDomKeyEventHandler)this.Events[DomKeyPressEvent])(this, e);
        }