Table of Contents

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 ParametricEqualizerBand

Inheritance

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

freq float

The center frequency in Hz.

width float

The bandwidth in Hz.

gain float

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

float

Gain

Gets or sets the gain for this band.

public float Gain { get; set; }

Property Value

float

Width

Gets or sets the bandwidth of this band.

public float Width { get; set; }

Property Value

float