ACPAddIn.Notification.showWithTimer C# (CSharp) Method

showWithTimer() public method

public showWithTimer ( int second ) : void
second int
return void
        public void showWithTimer(int second)
        {
            Show();

            this.Opacity = 0;

            fadeInTimer.Stop();
            fadeInTimer.Interval = 18;
            fadeInTimer.Start();

            timer.Stop();
            timer.Interval = second * 1000;
            timer.Start();
        }