1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/wiki/_SNDPAUSED.md
2022-12-24 21:14:48 -06:00

408 B

The _SNDPAUSED function checks if a sound is paused. Uses a handle parameter passed from _SNDOPEN.

Syntax

isPaused%% = _SNDPAUSED(handle&)

Description

  • Returns true (-1) if the sound is paused. False (0) if not paused.

Example(s)


PRINT _SNDPAUSED(h&) 

See Also