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

OnMouseLeave() protected method

Raises the MouseLeave event
protected OnMouseLeave ( EventArgs e ) : void
e EventArgs An EventArgs that contains the event data
return void
        protected override void OnMouseLeave(EventArgs e)
        {
            base.OnMouseLeave(e);

            // we're outside of the header, so if there is a hot column,
            // it needs to be reset (this shouldn't happen, but better
            // safe than sorry ;)
            if (this.hotColumn != -1)
            {
                this.ColumnModel.Columns[this.hotColumn].InternalColumnState = ColumnState.Normal;

                this.ResetHotColumn();
            }
        }
Table