ProgressBarGadget3D()

Syntax

Result = ProgressBarGadget3D(#Gadget3D, x, y, Width, Height, Minimum, Maximum)
Description
Creates a ProgressBar gadget in the current GadgetList. If #PB_Any is used as '#Gadget3D' parameter, the new gadget number will be returned as 'Result'. The possible values that the progress bar can take are fixed between the Minimum and Maximum one.

To add a 'mini help' to this gadget, use GadgetToolTip3D().

The following functions can be used to act on the gadget:

- SetGadgetState3D(): Change progress bar value.
- GetGadgetState3D(): Get the current progress bar value.
- SetGadgetAttribute3D(): With the following attributes:
  #PB_ProgressBar3D_Minimum   : Changes the minimum value.
  #PB_ProgressBar3D_Maximum   : Changes the maximum value.
- GetGadgetAttribute3D(): With the following attributes:
  #PB_ProgressBar3D_Minimum   : Returns the minimum value.
  #PB_ProgressBar3D_Maximum   : Returns the maximum value.

Supported OS

All

<- PanelGadget3D() - Gadget3D Index - RemoveGadgetItem3D() ->