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

ResetToolTip() private method

private ResetToolTip ( ) : void
return void
        private void ResetToolTip()
        {
            bool tooltipActive = this.ToolTip.Active;

            if (tooltipActive)
                this.ToolTip.Active = false;

            this.ResetMouseEventArgs();

            this.ToolTip.SetToolTip(this, null);

            if (tooltipActive)
                this.ToolTip.Active = true;
        }
Table