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)
  2. this(int maxValue)
    class ProgressBar
    this
    (
    int maxValue = 100
    )
  3. int value;
  4. int maxValue;

Parameters

maxValue int

Maximum value for the progress bar.

Meta