Copyright © 2008-2019 MultiMedia Soft

GraphicBarsManager.GetGraphicalSettings method

Previous pageReturn to chapter overviewNext page

Remarks

 

Retrieves the current graphical settings for the given graphic bar. Settings can be modified through the GraphicBarsManager.SetGraphicalSettings method.

 

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

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

 

 

Syntax

 

[Visual Basic]

Public Function GetGraphicalSettings (

hWndGraphicBar as IntPtr,

ByRef settings as GRAPHIC_BAR_SETTINGS

) as enumErrorCodes


 

[C#]

public enumErrorCodes GetGraphicalSettings (

IntPtr hWndGraphicBar,

ref GRAPHIC_BAR_SETTINGS settings

);


 

[C++]

public: enumErrorCodes GetGraphicalSettings (

IntPtr hWndGraphicBar,

GRAPHIC_BAR_SETTINGS __gc *settings

);


 

 

Parameter

Description

 

 

hWndGraphicBar

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

settings

Reference to the object of class GRAPHIC_BAR_SETTINGS that receives in output the graphical settings of the graphic bar.

 

 

Return value

 

Value

Meaning

 

 

Negative value

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

enumErrorCodes.NOERROR (0)

The method call was successful.