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

ResetLastMouseCell() private method

Resets the last known cell position that the mouse was over to empty
private ResetLastMouseCell ( ) : void
return void
        internal void ResetLastMouseCell()
        {
            if (!this.lastMouseCell.IsEmpty)
            {
                this.ResetMouseEventArgs();

                CellPos oldLastMouseCell = this.lastMouseCell;
                this.lastMouseCell = CellPos.Empty;

                this.RaiseCellMouseLeave(oldLastMouseCell);
            }
        }
Table