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

OnCellLostFocus() protected method

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

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

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