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

OnDomKeyPress() protected méthode

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