Remarks
Modifies the gain of a given band of the equalizer.
For further details about defining the equalizer settings refer to the How to define an equalizer section.
For further details about methods related to the use of special effects refer to the EffectsMan class.
Syntax
[Visual Basic]
Public Function EqualizerBandSetGain (
fFrequency as float,
fGain as float
) as float
|
|
[C#]
public float EqualizerBandSetGain (
float fFrequency,
float fGain
);
|
|
[C++]
public: float EqualizerBandSetGain (
float fFrequency,
float fGain
);
|
|
Parameter
|
Description
|
|
|
fFrequency
|
Frequency of the band expressed in Hertz
|
fGain
|
Gain of the band expressed in dB
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|