Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepSeconds


Ignore:
Timestamp:
08/20/10 15:00:23 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepSeconds

    v1 v1  
     1= SleepSeconds =
     2Pause a specified number of seconds
     3
     4{{{
     5void SleepSeconds(int nSeconds);
     6}}}
     7
     8== Parameters ==
     9
     10 * nSeconds - number of seconds to pause
     11
     12== Return Value ==
     13
     14Function does not return a value
     15
     16== Remarks ==
     17
     18This completes pauses the application for the specified number of seconds.
     19
     20== Examples ==
     21
     22{{{
     23DisplayText(0, 0, "Starting...");
     24SleepSeconds(5);
     25DisplayText(0, 20, "Ready");
     26}}}
     27
     28
     29== See Also ==
     30
     31 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/SleepMilliseconds SleepMilliseconds]
     32