Copyright © 2011-2019 MultiMedia Soft

DisplayWaveformAnalyzer property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property DisplayWaveformAnalyzer As WaveformAnalyzer


 

[C#]

public WaveformAnalyzer DisplayWaveformAnalyzer {get;}


 

[C++]

public: __property WaveformAnalyzer* get_DisplayWaveformAnalyzer ();


 

This property is Read-only

 

 

Remarks

The Waveform Analyzer object.

 

This property encapsulates the functionality of the WaveformAnalyzer class.

IMPORTANT: The graphical visualization of the WaveformAnalyzer 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 DisplayWaveformAnalyzerGet method so, if in C# you access the object like this:

 

Visual C#

 

audioSoundEditorApi.DisplayWaveformAnalyzer.Create (PictureAnalyzer.Handle, ...);

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->DisplayWaveformAnalyzerGet()->Create (long (PictureAnalyzer.m_hWnd));

 

 

Visual Basic 6

 

audioSoundEditorApi.DisplayWaveformAnalyzerGet().Create PictureAnalyzer.hWnd, ...

 

 

For details about the use of the Waveform Analyzer refer to the How to use the Waveform Analyzer section.