C# Class ManagedBass.DirectX8.DXParamEQ

DX8 ParamEQ Effect.
Inheritance: IDisposable
显示文件 Open project: ManagedBass/ManagedBass

Public Methods

Method Description
AddBand ( double CenterFrequency = 100 ) : int

Adds a Band.

DXParamEQ ( int Channel, double Bandwidth = 18 ) : System

Creates a new instance of DXParamEQ.

Dispose ( ) : void

Frees all resources used by this instance.

UpdateBand ( int Band, double Gain ) : void

Updates a Band.

Method Details

AddBand() public method

Adds a Band.
public AddBand ( double CenterFrequency = 100 ) : int
CenterFrequency double The Band's center frequency in hertz, in the range from 80 to 16000. This value cannot exceed one-third of the frequency of the channel. Default = 100 Hz.
return int

DXParamEQ() public method

Creates a new instance of DXParamEQ.
public DXParamEQ ( int Channel, double Bandwidth = 18 ) : System
Channel int
Bandwidth double
return System

Dispose() public method

Frees all resources used by this instance.
public Dispose ( ) : void
return void

UpdateBand() public method

Updates a Band.
public UpdateBand ( int Band, double Gain ) : void
Band int The Index of the Band to Update (as returned by ).
Gain double The new Gain value for the Band (-15 ... 0 ... 15).
return void