Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
CdRippingSize event 
 
Remarks 
 
Occurs, during a CD ripping session, to notify the actual size of ripped sound data. 
 
 
Syntax 
 
[Visual Basic] 
Public Event CdRippingSize As CdRippingPSizeEventHandler
 
[C#] 
public event CdRippingPSizeEventHandler CdRippingSize;
 
[C++] 
public: __event CdRippingPSizeEventHandler CdRippingSize;
 
 
Event Data 
 
The event handler receives an argument of type CdRippingSizeEventArgs. 
 
CdRippingSizeEventArgs members
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.
  •  
     
     
     
     
     
     
     
     
    Copyright © 2006 - 2008 MultiMedia Soft 
    Return to Table of contents