Windows Media Player 11 SDK AxWindowsMediaPlayer.CdromBurnError Event (VB and C#)
Previous | Next |
AxWindowsMediaPlayer.CdromBurnError Event (VB and C#)
The CdromBurnError event occurs when a generic error happens during a CD burning operation.
[Visual Basic] Private Sub player_CdromBurnError( sender As Object, e As _WMPOCXEvents_CdromBurnErrorEvent ) Handles player.CdromBurnError [C#]
Event Data
The handler associated with this event is of type AxWMPLib._WMPOCXEvents_CdromBurnErrorEventHandler. This handler receives an argument of type AxWMPLib._WMPOCXEvents_CdromBurnErrorEvent, which contains the following properties related to this event.
Property | Description |
hrError | System.Int32
The error that raised the event. |
pCdromBurn | WMPLib.IWMPCdromBurn
The interface that represents the burning operation that raised the error. |
Remarks
To capture media specific errors, handle the AxWMPLib._WMPOCXEvents_CdromBurnMediaError 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#)
- AxWindowsMediaPlayer.CdromBurnMediaError Event (VB and C#)
- IWMPCdromBurn Interface (VB and C#)
Previous | Next |