Remarks
Occurs when a song's highest peak, requested through the PeakDetectionOnPlayerRequest method, has been calculated.
See the How to apply special effects to a playing sound section for further details.
Syntax
[Visual Basic]
Public Event NormalizationPeakAvailable As NormalizationPeakAvailableEventHandler
|
|
[C#]
public event NormalizationPeakAvailableEventHandler NormalizationPeakAvailable;
|
|
[C++]
public: __event NormalizationPeakAvailableEventHandler* NormalizationPeakAvailable;
|
|
Event Data
The event handler receives an argument of type NormalizationPeakAvailableAvailableEventArgs having the following parameters:
Parameter
|
Description
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the involved player
|
fPeak
|
Floating point value representing the highest peak value.
The value can be in the range from 0.0 to 1.0
|
|