ProgressBar.this

Set the value and maxValue of the progressBar.

If initialized with no arguments, the progress bar starts empty, with maxValue set to 100.

  1. this(int value, int maxValue)
    class ProgressBar
    this
    (
    int value
    ,)
  2. this(int maxValue)
  3. int value;
  4. int maxValue;

Parameters

value int

Current value. Defaults to 0, making the progress bar empty.

maxValue int

Maximum value for the progress bar.

Meta