SUICircularProgressBar
class SUICircularProgressBar
Circular progress bars that display a minimum, maximum and flexible value on the screen, can be modified as you like.
See the SUICircularProgressBar component topic to learn more about SUICircularProgressBar.
public class SUICircularProgressBar extends Component
— Constructors (1) —
| Constructor | Description |
|---|---|
| SUICircularProgressBar() | Creates a new SUICircularProgressBar. |
— Methods (10) —
| Name | Description |
|---|---|
| float getValue() | Returns the current value of the SUICircularProgressBar. |
| void setValue(float value) | Sets the current value of the SUICircularProgressBar to be "value" argument. |
| float getMaxValue() | Returns the current maximum value of the SUICircularProgressBar. |
| void setMaxValue(float value) | Sets the current maximum value of the SUICircularProgressBar to be "value" argument. |
| float getMaskMaxLength() | Returns the current maximum length of the SUICircularProgressBar mask. |
| void setMaskMaxLength(float value) | Sets the current maximum length of the SUICircularProgressBar mask to be "value" argument. |
| boolean isTextEnabled() | Returns true if the SUICircularProgressBar text is enabled, false if not. |
| void setTextEnabled(boolean value) | Defines whether the SUICircularProgressBar text will be enabled or disabled to be "value" argument. |
| boolean isSetMask() | Returns true if the SUICircularProgressBar mask is on, false if not. |
| void setMaskEnabled(boolean value) | Defines whether the SUICircularProgressBar mask will be activated or deactivated to be "value" argument. |