Class ParametricEqualizerBand
- Namespace
- VisioForge.Core.Types.X.AudioEffects
- Assembly
- VisioForge.Core.dll
Defines a single band for a parametric equalizer, with center frequency, bandwidth, and gain.
public class ParametricEqualizerBandInheritance
Inherited Members
Constructors
ParametricEqualizerBand()
Initializes a new instance of the VisioForge.Core.Types.X.AudioEffects.ParametricEqualizerBand class with default values.
public ParametricEqualizerBand()ParametricEqualizerBand(float, float, float)
Initializes a new instance of the VisioForge.Core.Types.X.AudioEffects.ParametricEqualizerBand class.
public ParametricEqualizerBand(float freq, float width, float gain)Parameters
freqfloat-
The center frequency in Hz.
widthfloat-
The bandwidth in Hz.
gainfloat-
The gain in dB. Positive boosts, negative cuts.
Properties
Frequency
Gets or sets the center frequency of this band.
public float Frequency { get; set; }Property Value
Gain
Gets or sets the gain for this band.
public float Gain { get; set; }Property Value
Width
Gets or sets the bandwidth of this band.
public float Width { get; set; }