Remarks
Occurs whenever a CD ripping session is completed or stopped through a call to the CdRippingStop method.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic]
Public Event CdRippingStopped As CdRippingStoppedEventHandler
|
|
[C#]
public event CdRippingStoppedEventHandler CdRippingStopped;
|
|
[C++]
public: __event CdRippingStoppedEventHandler CdRippingStopped;
|
|
Event Data
The event handler receives an argument of type CdRippingStoppedEventArgs having the following parameters:
Parameters
|
Description
|
|
|
nCdDriveIndex
|
Number representing the zero-based index of the CD drive that fired the event. The total number of available CD drives can be obtained using the GetCdDrivesCount method.
|
nCdTrackIndex
|
Number representing the one-based index of the CD audio track that is being ripped.
|
bCompleted
|
Boolean value that specifies if the CD ripping session was completed or interrupted before completion.
Supported values are the following:
Mnemonic Value
|
Meaning
|
false
|
The ripping of the given CD track was interrupted: interruption's possible causes are the CD drive door being opened or a call to the CdRippingStop method. Check the LastError property value in order to see the last error.
|
true
|
The ripping of the given CD track was completed.
|
|
|