Copyright © 2011-2019 MultiMedia Soft

DisplaySpectrumEnh property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property DisplaySpectrumEnh As SpectrumEnh


 

[C#]

public SpectrumEnh DisplaySpectrumEnh {get;}


 

[C++]

public: __property SpectrumEnh* get_DisplaySpectrumEnh ();


 

This property is Read-only

 

 

Remarks

The embedded Spectrum object (Visual Feedback).

 

This property encapsulates the functionality of the SpectrumEnh class.

IMPORTANT: The graphical visualization of the SpectrumEnh class on a user interface requires the component to be instanced inside a container form.

 

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 DisplaySpectrumEnhGet method so, if in C# you access the object like this:

 

Visual C#

 

audioSoundEditorApi.DisplaySpectrumEnh.Create (PictureSpectrum.Handle);

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->DisplaySpectrumEnhGet()->Create (PictureSpectrum.m_hWnd);

 

 

Visual Basic 6

 

audioSoundEditorApi.DisplaySpectrumEnhGet().Create PictureSpectrum.hWnd

 

 

For details about using the Enhanced Spectrum Analyzer refer to the How to use the Enhanced Spectrum Analyzer tutorial.