Copyright © 2006-2019 MultiMedia Soft

GraphicBarsManager.Show method

Previous pageReturn to chapter overviewNext page

Remarks

 

Shows/hides an existing graphic bar control.

 

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

For further details about methods of the Graphic Bars Manager refer to the GraphicBarsMan class section.

 

 

Syntax

 

[Visual Basic]

Public Function Show (

hWndGraphicBar as IntPtr,

bShow as Boolean

) as enumErrorCodes


 

[C#]

public enumErrorCodes Show (

IntPtr hWndGraphicBar,

bool bShow

);


 

[C++]

public: enumErrorCodes Show (

IntPtr hWndGraphicBar,

bool bShow

);


 

 

 

Parameter

Description

 

 

hWndGraphicBar

Handle of the control returned by a previous call to the GraphicBarsManager.Create method

bShow

Boolean value that specifies if it must show/hide the given graphic bar control.

 

Supported values are the following:

Value

Meaning

false

Hides the Waveform Analyzer window

true

Shows the Waveform Analyzer window

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.