Share via


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

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.CdromRipMediaError Event (VB and C#)

The CdromRipMediaError event occurs when an error happens while ripping an individual track from a CD.

[Visual Basic]
Private Sub player_CdromRipMediaError(
  sender As Object,
  e As _WMPOCXEvents_CdromRipMediaErrorEvent
) Handles player.CdromRipMediaError

[C#]

Event Data

The handler associated with this event is of type AxWMPLib._WMPOCXEvents_CdromRipMediaErrorEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_CdromRipMediaErrorEvent, which contains the following properties related to this event.

Property Description
pCdromRip WMPLib.IWMPCdromRip

The interface that represents the ripping operation that raised the error.

pMedia System.Object

The media item that raised the error. You can cast this to an IWMPMedia interface to access it.

Requirements

Version: Windows Media Player 11.

Namespace: AxWMPLib

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

See Also

Previous Next