Class FlangerAudioEffect
Flanger audio effect. Implements the BaseAudioEffect.
Implements
Inherited Members
Namespace: VisioForge.Core.Types.X.AudioEffects
Assembly: VisioForge.Core.dll
Syntax
public class FlangerAudioEffect : BaseAudioEffect, ISharedAudioEffectX
Constructors
FlangerAudioEffect(TimeSpan, float, bool)
Initializes a new instance of the FlangerAudioEffect class.
Declaration
public FlangerAudioEffect(TimeSpan delay, float frequency, bool phaseInvert)
Parameters
Type | Name | Description |
---|---|---|
TimeSpan | delay | Specifies the delay time in seconds. |
float | frequency | Specifies the flanger frequency. |
bool | phaseInvert | Specifies whether the added signal should be inverted. |
Properties
Delay
Gets or sets the delay time in seconds.
Declaration
public TimeSpan Delay { get; set; }
Property Value
Type | Description |
---|---|
TimeSpan | The delay. |
Frequency
Gets or sets the flanger frequency.
Declaration
public float Frequency { get; set; }
Property Value
Type | Description |
---|---|
float | The frequency. |
PhaseInvert
Gets or sets a value indicating whether the added signal should be inverted.
Declaration
public bool PhaseInvert { get; set; }
Property Value
Type | Description |
---|---|
bool |
|