AcTools.Windows.Input.MouseSimulator.Sleep C# (CSharp) 메소드

Sleep() 공개 메소드

Sleeps the executing thread to create a pause between simulated inputs.
public Sleep ( System.TimeSpan timeout ) : IMouseSimulator
timeout System.TimeSpan The time to wait.
리턴 IMouseSimulator
        public IMouseSimulator Sleep(TimeSpan timeout) {
            Thread.Sleep(timeout);
            return this;
        }
    }

Same methods

MouseSimulator::Sleep ( int millsecondsTimeout ) : IMouseSimulator