SetProgressRange(handle, integer, integer)
Description
Section titled âDescriptionâThe SetProgressRange Lua function defines a range for a progress bar.
A handle input argument defines which progress bar it defines a range for. The progress bar must exist to have a handle. Progress bars can be created using the StartProgress function.
See the ProgressBar topic for more info regarding progress bars and links to other related functions.
Arguments
Section titled âArgumentsâ- Handle:
The handle for the progress bar. - Integer:
The start value for the range. - Integer:
The end value for the range.
This function does not return anything.
Example
Section titled âExampleâThis example sets a range for the progress bar created using the example in the StartProgress topic (link above):
| Copy CodeLua |
| ``` |
| return function() |
-- Sets the range of a progress bar with the matching handleSetProgressRange(progressHandle, 1, 10)end