Copyright © 2011-2019 MultiMedia Soft

GraphicBarsManager property (RO)

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property GraphicBarsManager As GraphicBarsMan


 

[C#]

public GraphicBarsMan GraphicBarsManager {get;}


 

[C++]

public: __property GraphicBarsMan* get_GraphicBarsManager ();


 

This property is Read-only

 

 

Remarks

The Graphic Bars Manager object is used to create custom graphic bars like VU-Meter bars, Spectrum bars and Progress bars.

 

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

 

Visual C#

 

audioSoundEditorApi.GraphicBarsManager.Create (Picture1.Handle, ...);

 

 

in other languages you will use the following syntax

 

Unmanaged Visual C++

 

audioSoundEditorApi->GraphicBarsManagerGet()->Create (Picture1.m_hWnd, ...);

 

 

Visual Basic 6

 

audioSoundEditorApi.GraphicBarsManagerGet().Create Picture1.hWnd, ...

 

 

For a tutorial about the use of the Graphic Bars Manager refer to the How to perform custom feedbacks rendering using graphic bars section.