Remarks
Occurs, during a CD ripping session, to notify the actual size of ripped sound data.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic]
Public Event CdRippingSize64 As CdRippingSize64EventHandler
|
|
[C#]
public event CdRippingSize64EventHandler CdRippingSize64;
|
|
[C++]
public: __event CdRippingSize64EventHandler CdRippingSize64;
|
|
Event Data
The event handler receives an argument of type CdRippingSize64EventArgs 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.
|
nDataSize
|
Number representing the actual size, expressed in bytes, of ripped data:
• | if ripping directly to memory, this value indicates the amount of memory occupied by ripped sound data |
• | if ripping directly to file, this value indicates the actual file size. |
|
|