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 TypeDefault
Animated

Set to true to make the progress bar animated.

boolfalse
ChildContent

Specifies the content to be rendered inside this Progress.

RenderFragmentnull
Color

Specifies the progress bar color.

Colornull
Indeterminate

Set to true to show that an operation is being executed.

boolfalse
Intent

Specifies the progress bar intent.

Intentnull
Max

Maximum value of the progress bar.

int0
Min

Minimum value of the progress bar.

int0
ShowValue

If true, the value will be showed within the progress bar.

booltrue
Size

Size of the progress bar.

Size?null
Striped

Set to true to make the progress bar stripped.

boolfalse
Value

The progress value.

int?null

ProgressBar

Parameter Description TypeDefault
Animated

Set to true to make the progress bar animated.

boolfalse
ChildContent

Specifies the content to be rendered inside this ProgressBar.

RenderFragmentnull
Color

Specifies the progress bar color.

ColorColor.Primary
Indeterminate

Set to true to show that an operation is being executed.

boolfalse
Intent

Specifies the progress bar intent.

Intentnull
Max

Maximum value of the progress bar.

int100
Min

Minimum value of the progress bar.

int0
Striped

Set to true to make the progress bar stripped.

boolfalse
Value

The progress value.

int?null

PageProgress

Parameter Description TypeDefault
Color

Type color of the progress bar, optional.

ColorColor.Default
Intent

Type intent of the progress bar, optional.

Intentnull
Value

The progress value. Leave as null for indeterminate progress bar.

int?null
Visible

Specifies the visibility of progress bar.

boolfalse

Methods

ProgressBar

Method DescriptionReturnParameters
Animate Sets the progress bar Animated flag. Taskbool animated

PageProgress

Method DescriptionReturnParameters
SetValueAsync Sets the progress value and redraws the component. Taskint? value
On this page