Remarks
Occurs, during a CD ripping automation session, to notify the actual total advancement percentage. The advancement related to each CD track added to the ripping automation session is notified through the CdRippingPercentage event.
Syntax
[Visual Basic]
Public Event CdRippingAutomationTotalPerc As CdRippingAutomationTotalPercEventHandler
|
|
[C#]
public event CdRippingAutomationTotalPercEventHandler CdRippingAutomationTotalPerc;
|
|
[C++]
public: __event CdRippingAutomationTotalPercEventHandler CdRippingAutomationTotalPerc;
|
|
Event Data
The event handler receives an argument of type CdRippingAutomationTotalPercEventArgs 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.
|
nCdRippingPercentage
|
Number representing the total percentage of advancement of the ripping automation session
|
|