BudgetAnalyser.Engine.Widgets.BudgetBucketMonitorWidget.Update C# (CSharp) Méthode

Update() public méthode

Updates the widget values with updated input.
public Update ( ) : void
Résultat void
        public override void Update([NotNull] params object[] input)
        {
            base.Update(input);
            DetailedText = BucketCode;
            if (!Enabled)
            {
                ToolTip = this.disabledToolTip;
            }
        }
    }