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

OnCellGotFocus() protected method

Raises the CellGotFocus event
protected OnCellGotFocus ( CellFocusEventArgs e ) : void
e CellFocusEventArgs A CellFocusEventArgs that contains the event data
return void
        protected virtual void OnCellGotFocus(CellFocusEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                ICellRenderer renderer = this.ColumnModel.GetCellRenderer(e.Column);

                if (renderer != null)
                {
                    renderer.OnGotFocus(e);
                }

                if (CellGotFocus != null)
                {
                    CellGotFocus(this, e);
                }
            }
        }
Table