Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
WaveAnalysisStop event 
 
Remarks 
 
Occurs when the analysis of a sound's waveform has been completed. The analysis is started through a previous call to the WaveformAnalyzer.AnalyzeFullSound method. 
 
 
Syntax 
 
[Visual Basic] 
Public Event WaveAnalysisStop As WaveAnalysisStopEventHandler
 
[C#] 
public event WaveAnalysisStopEventHandler WaveAnalysisStop;
 
[C++] 
public: __event WaveAnalysisStopEventHandler WaveAnalysisStop;
 
 
Event Data 
 
The event handler receives an argument of type WaveAnalysisStopEventArgsEventArgs. 
 
WaveAnalysisStopEventArgsEventArgs members
Description
 
 
nTotalPeaksDetected
Number representing the amount of peaks detected during the sound's analysis.
fPeakDurationInMs
Floating point number representing the duration in milliseconds of each detected peak.
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents