Copyright © 2005-2019 MultiMedia Soft

SoundGenerator.StreamElementToneTypeGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains the type of wave tone for the given wave tone element.

 

For further details about sound generation see the SoundGenerator object and the How to generate wave tones, noises, DTMF tones and text to speech tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function StreamElementToneTypeGet (

nPlayerIndex as Int16,

nUniqueId as Int32,

ByRef nType as enumSoundGenWaveTypes

) as enumErrorCodes


 

[C#]

public enumErrorCodes StreamElementToneTypeGet (

Int16 nPlayerIndex,

Int32 nUniqueId,

ref enumSoundGenWaveTypes nType

);


 

[C++]

public: enumErrorCodes StreamElementToneTypeGet (

Int16 nPlayerIndex,

Int32 nUniqueId,

enumSoundGenWaveTypes __gc *nType

);


 

Parameter

Description

 

 

nPlayerIndex

Number representing the zero-based index of the involved player

nUniqueId

The unique identifier of the element previously returned by one of the following calls:

- SoundGenerator.StreamChannelAddTone

- SoundGenerator.StreamChannelElementUniqueIdGet

nType

Reference to a value that, on return from the method call, will contain 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.