Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents  
 
GraphicBarsManager.SetValue method 
 
Remarks 
 
Sets a new value into the graphic bar. The current value can be obtained through the GraphicBarsManager.GetValue 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 SetValue
hWndGraphicBar as IntPtr, 
nValue as Int32 
 
[C#] 
public enumErrorCodes SetValue
IntPtr hWndGraphicBar
Int32 nValue 
);
 
[C++] 
public: enumErrorCodes SetValue
IntPtr hWndGraphicBar, 
Int32 nValue 
);
 
 
 
Parameter
Description
 
 
hWndGraphicBar
Handle of the control returned by a previous call to the GraphicBarsManager.Create method
nValue
New value
 
 
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.
 
 
 
 
 
 
 
Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents