Copyright © 2011-2019 MultiMedia Soft

Effects property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property Effects As EffectsMan


 

[C#]

public EffectsMan Effects {get;}


 

[C++]

public: __property EffectsMan* get_Effects ();


 

This property is Read-only

 

 

Remarks

The embedded Effects object.

 

This property encapsulates the functionality of the EffectsMan 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 EffectsGet method so, if in C# you access the object like this:

 

Visual C#

 

audioSoundEditorApi.Effects.VolumeFlatApply (...);

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->EffectsGet()->VolumeFlatApply (...);

 

 

Visual Basic 6

 

audioSoundEditorApi.EffectsGet().VolumeFlatApply ...