Copyright © 2008-2019 MultiMedia Soft

SoundComposer.ItemWaveToneTypeSet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Modifies the current type of a specific wave tone item. The current type of wave tone can be obtained through the SoundComposer.ItemWaveToneTypeGet 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 ItemWaveToneTypeSet (

nUniqueId as Int32,

nWaveType as enumSoundGenWaveTypes

) as enumErrorCodes


 

[C#]

public enumErrorCodes ItemWaveToneTypeSet (

Int32 nUniqueId,

enumSoundGenWaveTypes nWaveType

);


 

[C++]

public: enumErrorCodes ItemWaveToneTypeSet (

Int32 nUniqueId,

enumSoundGenWaveTypes nWaveType

);


 

Parameter

Description

 

 

nUniqueId

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

nWaveType

The type of wave tone.

Supported values are the following:

Mnemonic Value

Value

Meaning

SOUNDGEN_WAVE_TYPE_SINE

0

Sine wave

SOUNDGEN_WAVE_TYPE_SQUARE

1

Square wave

SOUNDGEN_WAVE_TYPE_SAWTOOTH

2

Sawtooth wave

SOUNDGEN_WAVE_TYPE_SAWTOOTH_NEGATIVE

3

Negative sawtooth wave

SOUNDGEN_WAVE_TYPE_TRIANGLE

4

Triangle wave

 

 

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.