PlaylistBackgroundGet Method (IMPlaylist)
path to the background file
background playlist item MItem object
Gets the current playlist background.
Syntax
Sub PlaylistBackgroundGet( _
   ByRef _pbsPath As String, _
   ByRef _ppPlaylistItem As MItem _
) 
void PlaylistBackgroundGet( 
   out string _pbsPath,
   out MItem _ppPlaylistItem
)
procedure PlaylistBackgroundGet( 
   Out  _pbsPath: String;
   Out  _ppPlaylistItem: MItem
); 
void PlaylistBackgroundGet( 
   [PARAMFLAG::Out] BSTR* _pbsPath,
   [PARAMFLAG::Out] MItem* _ppPlaylistItem
) 

Parameters

_pbsPath
path to the background file
_ppPlaylistItem
background playlist item MItem object
Example
'Get current playlist background
Dim pFile As MItem
Dim strPath As String
myPlaylist.PlaylistBackgroundGet(strPath, pFile)
//Get current playlist background
MItem pFile;
string strPath;
myPlaylist.PlaylistBackgroundGet(out strPath, out pFile);
var
myItem: MItem;
myPath: string;
begin
myPlaylist.PlaylistBackgroundGet(myPath, myItem);
end;
See Also

Reference

IMPlaylist Interface
IMPlaylist Members