Windows Media Player 11 SDK AxWindowsMediaPlayer.CdromBurnMediaError Event (VB and C#)
Previous | Next |
AxWindowsMediaPlayer.CdromBurnMediaError Event (VB and C#)
The CdromBurnMediaError event occurs when an error happens while burning an individual media item to a CD.
[Visual Basic] Private Sub player_CdromBurnMediaError( sender As Object, e As _WMPOCXEvents_CdromBurnMediaErrorEvent ) Handles player.CdromBurnMediaError [C#]
Event Data
The handler associated with this event is of type AxWMPLib._WMPOCXEvents_CdromBurnMediaErrorEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_CdromBurnMediaErrorEvent, which contains the following properties related to this event.
Property | Description |
pCdromBurn | WMPLib.IWMPCdromBurn
The interface that represents the burning 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. |
Remarks
To capture generic errors, handle the AxWMPLib._WMPOCXEvents_CdromBurnError event.
Requirements
Version: Windows Media Player 11.
Namespace: AxWMPLib
Assembly: AxInterop.WMPLib.dll (automatically generated by Visual Studio)
See Also
- AxWindowsMediaPlayer Object (VB and C#)
- 9AxWindowsMediaPlayer.CdromBurnError Event (VB and C#)
- IWMPCdromBurn Interface (VB and C#)
- IWMPMedia Interface (VB and C#)
Previous | Next |