Progress
This documentation provides a comprehensive reference for the
Progress component, guiding you through its configuration options.Screenshot #

Progress Parameters #
| Name | Type | Default | Required | Description | Added Version |
|---|---|---|---|---|---|
| AdditionalAttributes | Dictionary<string, object>? | null | Gets or sets additional attributes that will be applied to the component. | 1.0.0 | |
| ChildContent | RenderFragment? | null | Gets or sets the content to be rendered within the component. | 1.0.0 | |
| Class | string? | null | Gets or sets the CSS class name(s) to apply to the component. | 1.0.0 | |
| Height | double | 16 | Gets or sets the height of the Progress. Height is measured in pixels. | 1.0.0 | |
| Id | string? | null | Gets or sets the ID. If not set, a unique ID will be generated. | 1.0.0 | |
| Style | string? | null | Gets or sets the CSS style string that defines the inline styles for the component. | 1.0.0 |
ProgressBar Parameters #
| Name | Type | Default | Required | Description | Added Version |
|---|---|---|---|---|---|
| AdditionalAttributes | Dictionary<string, object>? | null | Gets or sets additional attributes that will be applied to the component. | 1.0.0 | |
| Class | string? | null | Gets or sets the CSS class name(s) to apply to the component. | 1.0.0 | |
| Color | ProgressColor | None | Gets or sets the progress color. | 1.0.0 | |
| Id | string? | null | Gets or sets the ID. If not set, a unique ID will be generated. | 1.0.0 | |
| Label | string? | null | Gets or sets the progress bar label. | 1.0.0 | |
| Style | string? | null | Gets or sets the CSS style string that defines the inline styles for the component. | 1.0.0 | |
| Type | ProgressType | Default | Gets or sets the progress bar type. | 1.0.0 | |
| Width | double | 0 | Get or sets the progress bar width. | 1.0.0 |
ProgressBar Methods #
| Name | Return type | Description | Added Version |
|---|---|---|---|
| DecreaseWidth(double width) | Void | Decrease the progress bar width. | 1.0.0 |
| GetWidth() | double | Get the progress bar width. | 1.0.0 |
| IncreaseWidth(double width) | Void | Increase the progress bar width. | 1.0.0 |
| SetColor(ProgressColor color) | Void | Set the progress bar color. | 1.0.0 |
| SetLabel(string text) | Void | Set the progress bar label. | 1.0.0 |
| SetWidth(double width) | Void | Set the progress bar width. | 1.0.0 |