46 lines
1.2 KiB
Text
46 lines
1.2 KiB
Text
.topic widget.progressbar
|
|
.title ProgressBar
|
|
.toc 1 ProgressBar
|
|
.index ProgressBar
|
|
.index wgtProgressBar
|
|
.index wgtProgressBarV
|
|
.index wgtProgressBarSetValue
|
|
.index wgtProgressBarGetValue
|
|
|
|
.h2 ProgressBar
|
|
|
|
A visual indicator of progress, displayed as a filled bar. Supports both horizontal and vertical orientations. Value ranges from 0 to 100.
|
|
|
|
Header: widgets/widgetProgressBar.h
|
|
|
|
.h3 Creation
|
|
|
|
.table
|
|
Macro Description
|
|
----- -----------
|
|
wgtProgressBar(parent) Create a horizontal progress bar.
|
|
wgtProgressBarV(parent) Create a vertical progress bar.
|
|
.endtable
|
|
|
|
.h3 Methods
|
|
|
|
.table
|
|
Macro Description
|
|
----- -----------
|
|
wgtProgressBarSetValue(w, value) Set the progress value (0-100).
|
|
wgtProgressBarGetValue(w) Get the current progress value.
|
|
.endtable
|
|
|
|
.h3 Events
|
|
|
|
ProgressBar is a display-only widget. Typically no callbacks are set.
|
|
|
|
.h3 Properties (BASIC Interface)
|
|
|
|
.table
|
|
Property Type Access Description
|
|
-------- ---- ------ -----------
|
|
Value Integer Read/Write Current progress value (0-100).
|
|
.endtable
|
|
|
|
.hr
|