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

OnCellMouseHover() protected method

Raises the CellHover event
protected OnCellMouseHover ( CellMouseEventArgs e ) : void
e CellMouseEventArgs A CellEventArgs that contains the event data
return void
        protected virtual void OnCellMouseHover(CellMouseEventArgs e)
        {
            if (this.CanRaiseEvents)
            {
                if (CellMouseHover != null)
                {
                    CellMouseHover(e.Cell, e);
                }
            }
        }
Table