Share via


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

Windows Media Player SDK banner art

Previous Next

AxWindowsMediaPlayer.CdromRipStateChange Event (VB and C#)

The CdromRipStateChange event occurs when a CD ripping operation changes state.

[Visual Basic]
Private Sub player_CdromRipStateChange(
  sender As Object,
  e As _WMPOCXEvents_CdromRipStateChangeEvent
) Handles player.CdromRipStateChange

[C#]

Event Data

The handler associated with this event is of type AxWMPLib._WMPOCXEvents_CdromRipStateChangeEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_CdromRipStateChangeEvent, 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.

wmprs WMPLib.WMPRipState

The enumeration value that indicates the new state.

Requirements

Version: Windows Media Player 11.

Namespace: AxWMPLib

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

See Also

Previous Next