Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
SpectrumValueChange event 
 
Remarks 
 
Occurs whenever there is a change on the Spectrum peak values: this event, generated every 15 milliseconds, can be useful if you need to implement your own Spectrum graphical representation; after receiving this event, in order to obtain the Spectrum values to render graphically, you need to perform a call to the Spectrum.GetTable method. 
 
This event is fired only if you have previously created the Spectrum object though a call to the Spectrum.Create method. 
 
 
Syntax 
 
[Visual Basic] 
Public Event SpectrumValueChange As EventHandler
 
[C#] 
public event EventHandler SpectrumValueChange;
 
[C++] 
public: __event EventHandler SpectrumValueChange;
 
 
Event Data 
 
The event handler receives an argument of type EventArgs. 
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents