Class BandPassAudioEffect
Band pass audio effect. Implements the BaseAudioEffect.
Implements
Inherited Members
Namespace: VisioForge.Core.Types.X.AudioEffects
Assembly: VisioForge.Core.dll
Syntax
public class BandPassAudioEffect : BaseAudioEffect, ISharedAudioEffectX
Constructors
BandPassAudioEffect(float, float)
Initializes a new instance of the BandPassAudioEffect class.
Declaration
public BandPassAudioEffect(float cutOffHigh, float cutOffLow)
Parameters
Type | Name | Description |
---|---|---|
float | cutOffHigh | Specifies the high cutoff frequency for a specific channel. |
float | cutOffLow | Specifies the low cutoff frequency for a specific channel. |
Properties
CutOffHigh
Gets or sets the high cutoff frequency for a specific channel.
Declaration
public float CutOffHigh { get; set; }
Property Value
Type | Description |
---|---|
float | The cut off high. |
CutOffLow
Gets or sets the low cutoff frequency for a specific channel.
Declaration
public float CutOffLow { get; set; }
Property Value
Type | Description |
---|---|
float | The cut off low. |