AddStatusBarField()
Syntax
AddStatusBarField(Width)Description
Add a field to the current statusbar previously created with CreateStatusBar(). Each new field is created after the old one.
Parameters
'Width' is the width of the new field in pixels. If 'Width' is set to #PB_Ignore then the field will be autosized to fill the remaining free space on the statusbar. Multiple fields can have a width of #PB_Ignore, in which case the free space will be devided evenly among these fields.
The following commands can be used to set or change the content of the statusbar field:
- StatusBarText()
- StatusBarImage()
- StatusBarProgress()
An example of using AddStatusBarField() you can see at CreateStatusBar().
Supported OS
All