Table of Contents

Class FadeAudioEffect

Namespace
VisioForge.Core.Types.X.AudioEffects
Assembly
VisioForge.Core.dll

Fade audio effect. Implements the VisioForge.Core.Types.X.AudioEffects.BaseAudioEffect.

public class FadeAudioEffect : BaseAudioEffect, ISharedAudioEffectX

Inheritance

Implements

Inherited Members

Constructors

FadeAudioEffect(uint, uint, TimeSpan, TimeSpan)

Initializes a new instance of the VisioForge.Core.Types.X.AudioEffects.FadeAudioEffect class.

public FadeAudioEffect(uint startVolume, uint stopVolume, TimeSpan startTime, TimeSpan stopTime)

Parameters

startVolume uint

Start volume.

stopVolume uint

Stop volume.

startTime TimeSpan

Start time.

stopTime TimeSpan

Stop time.

Properties

StartTime

Gets or sets start time.

public TimeSpan StartTime { get; set; }

Property Value

TimeSpan

StartVolume

Gets or sets start volume.

public uint StartVolume { get; set; }

Property Value

uint

StopTime

Gets or sets stop time.

public TimeSpan StopTime { get; set; }

Property Value

TimeSpan

StopVolume

Gets or sets stop volume.

public uint StopVolume { get; set; }

Property Value

uint

See Also