ISDBPlayer::StopAfterCurrent

From MediaMonkey Wiki
Revision as of 23:03, 13 October 2010 by Peke (talk | contribs)
Jump to navigation Jump to search

CoClass SDBPlayer, Interface ISDBPlayer

Property Get/Let StopAfterCurrent As Boolean

Method description

Stops playback after currently playing track.

Note: Introduced in MediaMonkey 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")