Copyright © 2008-2019 MultiMedia Soft

SoundComposer.ItemNoiseTypeGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains the current type of a specific noise item. The type of noise can be modified through the SoundComposer.ItemNoiseTypeSet method.

 

For further details about sound composing see the the SoundComposer object and the How to compose a sound tutorial.

 

 

Syntax

 

[Visual Basic]

control.SoundComposer.ItemNoiseTypeGet (

nUniqueId as Long,

ByRef nNoiseType as enumSoundGenNoiseTypes

) as enumErrorCodes


 

[C++]

short control.SoundComposer.ItemNoiseTypeGet (

long nUniqueId,

short *nNoiseType

);


 

Parameter

Description

 

 

nUniqueId

The unique identifier of the element previously returned by the call to the SoundComposer.ItemNoiseAdd method.

nNoiseType

Reference that, on return from the method call, will contain the type of noise.

Supported values are the following:

Mnemonic Value

Value

Meaning

SOUNDGEN_NOISE_TYPE_WHITE

0

White noise

SOUNDGEN_NOISE_TYPE_PINK

1

Pink noise

SOUNDGEN_NOISE_TYPE_BROWN

2

Brown noise

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred, check the LastError property value in order to get the error code

enumErrorCodes.ERR_NOERROR (0)

The method call was successful