BBjProgressBar::setIndeterminate
Description
In BBj 3.0 and higher, this method sets whether the BBjProgressBar is indeterminate. This option is not available on all platforms.
Syntax
Return Value |
Method |
---|---|
void |
setIndeterminate(boolean indeterminate) |
Parameters
Variable |
Description |
---|---|
indeterminate |
Sets whether the progress bar is indeterminate. 0 = Progress bar has a fixed range, which can be retrieved with getMinimum() and getMaximum(). 1 = Progress bar is indeterminate, indicating that the duration of the task is not yet known. |
Return Value
None.
Remarks
By default, a progress bar not indeterminate. It has a fixed range, which defaults to minimum = 0 and maximum = 100.
If indeterminate progress bars are not supported on a given platform, this method is ignored. Subsequent calls to BBjProgressBar::isIndeterminate() will return 0.
Example
|
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.