XPTable.Models.Table.ResetToolTip C# (CSharp) Méthode

ResetToolTip() private méthode

private ResetToolTip ( ) : void
Résultat 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