Forex_Strategy_Builder.NUD.SetValue C# (CSharp) Méthode

SetValue() private méthode

private SetValue ( decimal value ) : void
value decimal
Résultat void
        void SetValue(decimal value)
        {
            if (timer.Enabled)
                timer.Stop();

            timer.Tag = value;
            timer.Interval = 500;

            timer.Start();
        }