= SleepSeconds = Pause a specified number of seconds {{{ void SleepSeconds(int nSeconds); }}} == Parameters == * nSeconds - number of seconds to pause == Return Value == Function does not return a value == Remarks == This completes pauses the application for the specified number of seconds. == Examples == {{{ DisplayText(0, 0, "Starting..."); SleepSeconds(5); DisplayText(0, 20, "Ready"); }}} == See Also == * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepMilliseconds SleepMilliseconds]