Document revision: 2024-05-27
Refers to JDLG version: 2.0.18
Contents
StatusBar class
A Dialog may contain one StatusBar which
is displayed at the bottom of the Dialog.
It is a container object similar to a simplified
GroupBox.
- class : string, get
- Returns "StatusBar".
Example
In this example, a Dialog contains a
StatusBar which has a
height of 1.
The StatusBar contains a left-aligned message output field which
dynamically adjusts to the
Dialog width,
and a right-aligned
ProgressBar which may be made
visible when needed.
Dialog example
{
...
StatusBar status
{
.h = 1
EditText message
{
.xauto = 0
.xleft = 0
.xright = 10
.y = 0
.h = 1
.editable = 0
}
ProgressBar progress
{
.xauto = -1
.xright = 0
.w = 10
.y = 0
.h = 1
.visible = 0
}
}
}
|