AcTools.Windows.Input.MouseSimulator.Sleep C# (CSharp) Method

Sleep() public method

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

Same methods

MouseSimulator::Sleep ( int millsecondsTimeout ) : IMouseSimulator