Copyright © 2008-2019 MultiMedia Soft

SoundComposer.ItemSlidingWaveToneTypeSet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Modifies the type of sliding wave tone item. The current type can be obtained through the SoundComposer.ItemSlidingWaveToneTypeGet 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 ItemSlidingWaveToneTypeSet (

nUniqueId as Int32,

nWaveType as enumSoundGenSlidingWaveTypes

) as enumErrorCodes


 

[C#]

public enumErrorCodes ItemSlidingWaveToneTypeSet (

Int32 nUniqueId,

enumSoundGenSlidingWaveTypes nWaveType

);


 

[C++]

public: enumErrorCodes ItemSlidingWaveToneTypeSet (

Int32 nUniqueId,

enumSoundGenSlidingWaveTypes nWaveType

);


 

Parameter

Description

 

 

nUniqueId

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

nWaveType

Type of wave tone.

Supported values are the following:

Mnemonic Value

Value

Meaning

SOUNDGEN_SLIDING_WAVE_TYPE_SINE

0

Sine wave

SOUNDGEN_SLIDING_WAVE_TYPE_SQUARE

1

Square wave

SOUNDGEN_SLIDING_WAVE_TYPE_SAWTOOTH

2

Sawtooth wave

SOUNDGEN_SLIDING_WAVE_TYPE_SQUARE_NO_ALIAS

3

Square wave without aliasing

 

 

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.