Windows Media Player 11 SDK AxWindowsMediaPlayer.newPlaylist (VB and C#)
Previous | Next |
AxWindowsMediaPlayer.newPlaylist (VB and C#)
The newPlaylist method returns an IWMPPlaylist interface for a new playlist.
[Visual Basic] Public Overridable Function newPlaylist( bstrName As String, bstrURL As String ) As IWMPPlaylist [C#] public virtual IWMPPlaylist newPlaylist ( string bstrName, string bstrURL )
Parameters
bstrName
The System.String that is the name of the new playlist.
bstrURL
The System.String that is the URL of the Windows Media metafile playlist that is used to initialize the new playlist.
Return Values
A WMPLib.IWMPPlaylist interface that represents the newly created playlist.
Remarks
If the bstrURL parameter is a null or zero-length string (""), this method creates an empty playlist. If the bstrName parameter is a zero-length string (""), this method applies the current metafile name.
The new playlist created with this method is not added to the library. To add a new playlist to the library, use IWMPPlaylistCollection.importPlaylist or IWMPPlaylistCollection.newPlaylist. Any leading or trailing spaces in the playlist name are automatically removed when it is added to the library.
Because the library allows multiple playlists with the same name, you may want to check for the presence of a playlist with a given name before adding a new one.
Requirements
Version: Windows Media Player 9 Series or later
Namespace: AxWMPLib
Assembly: AxInterop.WMPLib.dll (automatically generated by Visual Studio)
See Also
- AxWindowsMediaPlayer Object (VB and C#)
- IWMPPlaylist Interface (VB and C#)
- IWMPPlaylistCollection.importPlaylist (VB and C#)
- IWMPPlaylistCollection.newPlaylist (VB and C#)
Previous | Next |