Remarks
Retrieves the current graphical settings for the given graphic bar. Settings can be modified through the GraphicBarsManager.SetGraphicalSettings method.
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 GraphicBarsManager object section.
Syntax
[Visual Basic]
control.GraphicBarsManager.GetGraphicalSettings (
hWndGraphicBar as OLE_HANDLE,
pParamData as long
) as enumErrorCodes
|
|
[C++]
short control.GraphicBarsManager.GetGraphicalSettings (
OLE_HANDLE hWndGraphicBar,
void *pParamData
);
|
|
Parameter
|
Description
|
|
|
hWndGraphicBar
|
Handle of the control returned by a previous call to the GraphicBarsManager.Create method
|
pParamData
|
Address of a structure of type GRAPHIC_BAR_SETTINGS that receives in output graphical settings of the graphic bar.
|
Return value
Value
|
Meaning
|
|
|
enumErrorCodes.ERR_NOERROR (0)
|
The call was successful.
|
Negative value
|
An error occurred: see the LastError property for further error details or for a list of the possible error values.
|
|