XPTable.Models.Table.OnKeyUp C# (CSharp) Method

OnKeyUp() protected method

Raises the KeyUp event
protected OnKeyUp ( KeyEventArgs e ) : void
e KeyEventArgs A KeyEventArgs that contains the event data
return void
        protected override void OnKeyUp(KeyEventArgs e)
        {
            base.OnKeyUp(e);

            if (!this.IsReservedKey(e.KeyData))
            {
                //
                if (e.KeyData == this.CustomEditKey &&
                    ((this.EditStartAction & EditStartAction.CustomKey) == EditStartAction.CustomKey))
                {
                    return;
                }

                // send all other key events to the cell's renderer
                // for further processing
                this.RaiseCellKeyUp(this.FocusedCell, e);
            }
        }
Table