:: com :: sun :: star :: awt ::

interface XProgressBar
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XProgressBar
Description
gives access to the value and settings of a progress bar.

Methods' Summary
setForegroundColor sets the foreground color (RGB) of the control.
setBackgroundColor sets the background color (RGB) of the control.
setRange sets the minimum and the maximum progress value of the progress bar.
setValue sets the progress value of the progress bar.
getValue returns the current progress value of the progress bar.
Methods' Details
setForegroundColor
[oneway] void
setForegroundColor(
 
[in] long
 
Color );

Description
sets the foreground color (RGB) of the control.
setBackgroundColor
[oneway] void
setBackgroundColor(
 
[in] long
 
Color );

Description
sets the background color (RGB) of the control.
setRange
[oneway] void
setRange(
 
[in] long
[in] long
 
Min,
Max );

Description
sets the minimum and the maximum progress value of the progress bar.

If the minimum value is greater than the maximum value, the method exchanges the values automatically.

setValue
[oneway] void
setValue(
 
[in] long
 
Value );

Description
sets the progress value of the progress bar.
getValue
long
getValue();
 
 

Description
returns the current progress value of the progress bar.
Top of Page