Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents  
 
PlayListRemoveItem method 
 
Remarks 
 
Removes a song (item) from the playlist associated with the specified player. 
 
For further details about playlists management see the How to create and manage a playlist tutorial. 
 
 
Syntax 
 
[Visual Basic] 
control.PlayListRemoveItem
nPlayer as Integer
nIndex as Integer 
 
[C++] 
short control.PlayListRemoveItem
short nPlayer
short nIndex 
);
 
 
Parameter
Description
 
 
nPlayer
Number representing the zero-based index of the player that owns the playlist
nIndex
Number representing the zero-based deletion position: if the nIndex parameter value is set to -1, all the items are removed from the playlist
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.ERR_NOERROR (0)
The call was successful.
 
 
 
 
 
 
 
Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents