ISDBPlayer::StopAfterCurrent: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{MethodDeclaration|SDBPlayer|ISDBPlayer| | {{MethodDeclaration|SDBPlayer|ISDBPlayer|Property Get/Let StopAfterCurrent As Boolean}} | ||
===Method description=== | |||
=== | Stops playback after currently playing track. | ||
{{Introduced|3.1.2}} | |||
===Example=== | |||
<source lang="vb"> | |||
'This example will show how to correctly implement | |||
'Correct = As Track is playing we set stop after current | |||
SDB.Player.Play | |||
SDB.Player.StopAfterCurrent = True | |||
MsgBox( "Enabled") | |||
'Incorrect = As Track is not playing setting stop after current doesn't have effect (got reset when player starts playing) | |||
SDB.Player.Stop | |||
SDB.Player.StopAfterCurrent = True | |||
SDB.Player.Play | |||
MsgBox( "Disabled") | |||
</source> | |||
[[Category:Scripting|{{PAGENAME}}]] | [[Category:Scripting|{{PAGENAME}}]] |
Latest revision as of 13:22, 24 April 2013
CoClass SDBPlayer, Interface ISDBPlayer
Property Get/Let StopAfterCurrent As Boolean
Method description
Stops playback after currently playing track.
Introduced in MediaMonkey version 3.1.2.
Example
'This example will show how to correctly implement
'Correct = As Track is playing we set stop after current
SDB.Player.Play
SDB.Player.StopAfterCurrent = True
MsgBox( "Enabled")
'Incorrect = As Track is not playing setting stop after current doesn't have effect (got reset when player starts playing)
SDB.Player.Stop
SDB.Player.StopAfterCurrent = True
SDB.Player.Play
MsgBox( "Disabled")