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

22 lines
363 B
Markdown
Raw Normal View History

The [_SNDSTOP](_SNDSTOP) statement stops a playing or paused sound using a handle from the [_SNDOPEN](_SNDOPEN) or [_SNDCOPY](_SNDCOPY) functions.
## Syntax
> [_SNDSTOP](_SNDSTOP) handle&
## Description
* Sounds can be resumed using [_SNDPLAY](_SNDPLAY) with the correct handle.
## Example(s)
```vb
_SNDSTOP h&
```
## See Also
* [_SNDPAUSE](_SNDPAUSE)