Share via


Windows Media Player 11 SDK AxWindowsMediaPlayer.PlaylistCollectionPlaylistRemoved Event (VB and C#) 

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.PlaylistCollectionPlaylistRemoved Event (VB and C#)

The PlaylistCollectionPlaylistRemoved event occurs when a playlist is removed from the playlist collection.

[Visual Basic]
Private Sub player_PlaylistCollectionPlaylistRemoved(
  sender As Object,
  e As _WMPOCXEvents_PlaylistCollectionPlaylistRemovedEvent
) Handles player.PlaylistCollectionPlaylistRemoved

[C#]
private void player_PlaylistCollectionPlaylistRemoved(
  object sender,
  _WMPOCXEvents_PlaylistCollectionPlaylistRemovedEvent e
)

Event Data

The handler associated with this event is of type AxWMPLib._WMPOCXEvents_PlaylistCollectionPlaylistRemovedEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_PlaylistCollectionPlaylistRemovedEvent, which contains the following property related to this event.

Property Description
bstrPlaylistName System.String

Specifies the name of the playlist that was removed.

Requirements

Version: Windows Media Player 9 Series or later

Namespace: AxWMPLib

Assembly: AxInterop.WMPLib.dll (automatically generated by Visual Studio)

See Also

Previous Next