MPLATFORMLib Namespace > MItemClass Class : PlaylistBackgroundGet Method |
Public Overridable Sub PlaylistBackgroundGet( _ ByRef _pbsPath As String, _ ByRef _ppPlaylistItem As MItem _ )
public virtual void PlaylistBackgroundGet( out string _pbsPath, out MItem _ppPlaylistItem )
public procedure PlaylistBackgroundGet( Out _pbsPath: String; Out _ppPlaylistItem: MItem ); virtual;
public: virtual void PlaylistBackgroundGet( [PARAMFLAG::Out] BSTR* _pbsPath, [PARAMFLAG::Out] MItem* _ppPlaylistItem )
'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;