Share via


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

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.MediaCollectionMediaRemoved Event (VB and C#)

The MediaCollectionMediaRemoved event occurs when a media item is removed from the local library.

[Visual Basic]
Private Sub player_MediaCollectionMediaRemoved(
  sender As Object,
  e As _WMPOCXEvents_MediaCollectionMediaRemovedEvent
) Handles player.MediaCollectionMediaRemoved

[C#]

Event Data

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

Property Description
pMedia System.Object

The media item removed from the local library. You can cast this to an IWMPMedia interface to access it.

Remarks

This event occurs only for the local library.

Requirements

Version: Windows Media Player 11.

Namespace: AxWMPLib

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

See Also

Previous Next