1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 03:30:23 +00:00
QB64-PE/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}}