ISDBPlayer::StopAfterCurrent: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
Line 4: Line 4:
Stops playback after currently playing track.
Stops playback after currently playing track.


Note: Introduced in MediaMonkey 3.1.2
{{Introduced|3.1.2}}


===Example===
===Example===

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")