1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 20:05:14 +00:00
qb64/internal/help/_SNDPAUSED.md

23 lines
408 B
Markdown
Raw Normal View History

The [_SNDPAUSED](_SNDPAUSED) function checks if a sound is paused. Uses a handle parameter passed from [_SNDOPEN](_SNDOPEN).
## Syntax
> isPaused%% = [_SNDPAUSED](_SNDPAUSED)(handle&)
## Description
* Returns true (-1) if the sound is paused. False (0) if not paused.
## Example(s)
```vb
PRINT _SNDPAUSED(h&)
```
## See Also
* [_SNDPAUSE](_SNDPAUSE), [_SNDPLAY](_SNDPLAY),
* [_SNDSTOP](_SNDSTOP)