SourceGrid.GridVirtual.OnKeyUp C# (CSharp) Method

OnKeyUp() protected method

protected OnKeyUp ( KeyEventArgs e ) : void
e System.Windows.Forms.KeyEventArgs
return void
        protected override void OnKeyUp(KeyEventArgs e)
        {
            base.OnKeyUp(e);

            if (Selection.ActivePosition.IsEmpty() == false)
            {
                Cells.ICellVirtual focusCell = GetCell(Selection.ActivePosition);
                if (focusCell != null)
                    Controller.OnKeyUp(new CellContext(this, Selection.ActivePosition, focusCell), e);
            }
        }