Copyright © 2008-2023 MultiMedia Soft

SoundComposer.ItemSoundFileVolumeFadingRemove method

Previous pageReturn to chapter overviewNext page

Remarks

 

Removes the requested volume fading. A specific fading can be added through the SoundComposer.ItemSoundFileVolumeFadingSet method.

 

For further details about sound composing see the the SoundComposerMan class and the How to compose a sound tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function ItemSoundFileVolumeFadingRemove (

nUniqueId as Int32,

bFadeIn as Boolean

) as enumErrorCodes


 

[C#]

public enumErrorCodes ItemSoundFileVolumeFadingRemove (

Int32 nUniqueId,

bool bFadeIn

);


 

[C++]

public: enumErrorCodes ItemSoundFileVolumeFadingRemove (

Int32 nUniqueId,

bool bFadeIn

);


 

Parameter

Description

 

 

nUniqueId

The unique identifier of the sound file item previously returned by the call to one of the following methods: SoundComposer.ItemSoundFileAdd, SoundComposer.ItemSoundFileMemoryAdd, SoundComposer.ItemSoundFileRawAdd, SoundComposer.ItemSoundFileMemoryRawAdd, SoundComposer.ItemSoundFileFromEditorAdd,or SoundComposer.ItemSoundFileFromRecorderAdd.

bFadeIn

Boolean value specifying if the fading is a fade-in or a fade-out.

Supported values are the following:

Mnemonic Value

Meaning

false

Removes the fade-out

true

Removes the fade-in

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.NOERROR (0)

The method call was successful.