IWMPPlaylist::removeItem method

[The feature associated with this page, Windows Media Player SDK, is a legacy feature. It has been superseded by MediaPlayer. MediaPlayer has been optimized for Windows 10 and Windows 11. Microsoft strongly recommends that new code use MediaPlayer instead of Windows Media Player SDK, when possible. Microsoft suggests that existing code that uses the legacy APIs be rewritten to use the new APIs if possible.]

The removeItem method removes the specified media item from the playlist.

Syntax

public void removeItem(
  IWMPMedia pIWMPMedia
);

Public Sub removeItem( _
  ByVal pIWMPMedia As IWMPMedia _
)
Implements IWMPPlaylist.removeItem

Parameters

pIWMPMedia [in]

A WMPLib.IWMPMedia interface that represents the media item to remove from the playlist.

Return value

This method does not return a value.

Remarks

If the item removed is the currently playing track, playback stops and the next item in the playlist becomes the current one.

If there is no next item, the previous item is used. If there are no other items, then the AxWindowsMediaPlayer.currentMedia property will return NULL.

Before calling this method, you must have full access to the library. For more information, see Library Access.

Requirements

Requirement Value
Version
Windows Media Player 9 Series or later
Namespace
WMPLib
Assembly
Interop.WMPLib.dll (Interop.WMPLib.dll.dll)

See also

AxWindowsMediaPlayer.currentMedia (VB and C#)

IWMPMedia Interface (VB and C#)

IWMPPlaylist Interface (VB and C#)

IWMPPlaylist.insertItem (VB and C#)

IWMPPlaylist.Item (VB and C#)

IWMPSettings2.mediaAccessRights (VB and C#)

IWMPSettings2.requestMediaAccessRights (VB and C#)