Blazorise Progress API
Explore the Blazorise Progress API reference for parameters, events, methods, and related types.
For examples and usage guidance, see the Progress documentation.
API
Parameters
Progress
| Parameter | Description | Type | Default |
|---|---|---|---|
Animated |
Set to true to make the progress bar animated. |
bool | false |
ChildContent |
Specifies the content to be rendered inside this Progress. |
RenderFragment | null |
Color |
Specifies the progress bar color. |
Color | null |
Indeterminate |
Set to true to show that an operation is being executed. |
bool | false |
Intent |
Specifies the progress bar intent. |
Intent | null |
Max |
Maximum value of the progress bar. |
int | 0 |
Min |
Minimum value of the progress bar. |
int | 0 |
ShowValue |
If true, the value will be showed within the progress bar. |
bool | true |
Size |
Size of the progress bar. |
Size? | null |
Striped |
Set to true to make the progress bar stripped. |
bool | false |
Value |
The progress value. |
int? | null |
ProgressBar
| Parameter | Description | Type | Default |
|---|---|---|---|
Animated |
Set to true to make the progress bar animated. |
bool | false |
ChildContent |
Specifies the content to be rendered inside this ProgressBar. |
RenderFragment | null |
Color |
Specifies the progress bar color. |
Color | Color.Primary |
Indeterminate |
Set to true to show that an operation is being executed. |
bool | false |
Intent |
Specifies the progress bar intent. |
Intent | null |
Max |
Maximum value of the progress bar. |
int | 100 |
Min |
Minimum value of the progress bar. |
int | 0 |
Striped |
Set to true to make the progress bar stripped. |
bool | false |
Value |
The progress value. |
int? | null |
PageProgress
| Parameter | Description | Type | Default |
|---|---|---|---|
Color |
Type color of the progress bar, optional. |
Color | Color.Default |
Intent |
Type intent of the progress bar, optional. |
Intent | null |
Value |
The progress value. Leave as null for indeterminate progress bar. |
int? | null |
Visible |
Specifies the visibility of progress bar. |
bool | false |
Methods
ProgressBar
| Method | Description | Return | Parameters |
|---|---|---|---|
Animate |
Sets the progress bar Animated flag. | Task | bool animated |
PageProgress
| Method | Description | Return | Parameters |
|---|---|---|---|
SetValueAsync |
Sets the progress value and redraws the component. | Task | int? value |