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

OnCellMouseLeave() protected method

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

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

                if (CellMouseLeave != null)
                {
                    CellMouseLeave(e.Cell, e);
                }
            }
        }
Table