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