Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents  
 
VUMeterValueChange event 
 
Remarks 
 
Occurs whenever there is a change on the VU-Meter peak values: this event, generated every 50 milliseconds, can be useful if you need to implement your own VU-Meter graphical representation. 
 
This event is fired only if you have created the VUMeter object though a call to the VUMeter.Create method. 
 
 
Syntax 
 
[Visual Basic] 
VUMeterValueChange
ByVal nPlayer as Integer
ByVal nLeftPeak as Integer
ByVal nRightPeak as Integer 
)
 
[C++] 
void VUMeterValueChange
short nPlayer, 
short nLeftPeak, 
short nRightPeak 
);
 
 
Parameter
Description
 
 
nPlayer
Number representing the zero-based index of the player that fired the event
nLeftPeak
Number representing the peak value for the left channel: can assume values from 0 (no sound) to 32767 (max volume).
nRightPeak
Number representing the peak value for the right channel: can assume values from 0 (no sound) to 32767 (max volume). 
If the sound is in Mono, the nLeftPeak and nRightPeak parameters assume the same value.
 
 
 
 
 
 
 
Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents