1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 20:45:13 +00:00
qb64/internal/help/_SNDPAUSED.txt

26 lines
538 B
Plaintext

The {{KW|_SNDPAUSED}} function checks if a sound is paused. Uses a handle parameter passed from {{KW|_SNDOPEN}}.
{{PageSyntax}}
:{{Parameter|paused%}} = {{KW|_SNDPAUSED}} ({{Parameter|handle&}})
{{PageDescription}}
*Returns -1 if the sound is paused. 0 if not paused.
*Sound files opened must have the "PAUSE" capability to use this function.
{{PageExamples}}
{{CodeStart}}
{{Cl|PRINT}} {{Cl|_SNDPAUSED}}(h&)
{{CodeEnd}}
{{PageSeeAlso}}
*{{KW|_SNDPAUSE}}, {{KW|_SNDPLAY}}, {{KW|_SNDSTOP}}
{{PageNavigation}}