Copyright © 2011-2019 MultiMedia Soft

SoundGenerator property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property SoundGenerator As SoundGeneratorMan


 

[C#]

public SoundGeneratorMan SoundGenerator {get;}


 

[C++]

public: __property SoundGeneratorMan* get_SoundGenerator ();


 

This property is Read-only

 

 

Remarks

The embedded sound generator.

 

This property encapsulates the functionality of the SoundGeneratorMan class.

 

When using the API from legacy development environments like Visual Basic 6 or unmanaged Visual C++, where communication is performed through COM interoperability, this object can be accessed through its COM interface exposed by the SoundGeneratorGet method so, if in C# you access the object like this:

 

Visual C#

 

audioSoundEditorApi.SoundGenerator.WaveToneGenerate (...);

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->SoundGeneratorGet()->WaveToneGenerate (...);

 

 

Visual Basic 6

 

audioSoundEditorApi.SoundGeneratorGet().WaveToneGenerate ...

 

 

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