Linear Progress
Overview
A visible component to display the download or upload progress
Component Properties
| Property | Description |
|---|---|
| MaxValue | It sets the maximum value or completion of the task. It represents the endpoint of the progress. In this case, the progress bar is divided into 100 units, and reaching the maximum value (100) signifies the completion of the task. You can adjust this property to match the maximum value corresponding to the completion of your specific task. |
| Value | It sets the current status or completion of the task. You can dynamically update this value using Update Progress block to reflect the changing progress. |
Blocks
Methods
Update Progress
updates the progress by given value
loading block...
| Input Params | Type | Description |
|---|---|---|
| value | Number | The current status of the progress |
Properties
value
Returns: Number
gets the current progress value
loading block...
max_value
Accepts: Number
sets the progress maximum value
loading block...
max_value
Returns: Number
gets the progress maximum value
loading block...
hide
Accepts: Boolean
Hides the component if the input is true and shows it if the input is false
loading block...
hidden
Returns: Boolean
Returns true if the component is hidden and false if it is not
loading block...