webmaster442.windowsterminal.progressbarstate - webmaster442/WindowsTerminal GitHub Wiki
ProgressbarState
Namespace: Webmaster442.WindowsTerminal
Windows terminal progress bar state
public enum ProgressbarState
Inheritance Object → ValueType → Enum → ProgressbarState Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
Name | Value | Description |
---|---|---|
Hidden | 0 | default state, and indicates that the progress bar should be hidden. Use this state when the command is complete, to clear out any progress state. |
Default | 1 | default state, and indicates that the progress bar should be shown in the default color. |
Error | 2 | Indicates that the progress bar should be shown in an error state. |
Indeterminate | 3 | Indicates that the progress bar should be shown in an indeterminate state. This is useful for commands that don't have a progress value, but are still running. This state ignores the progress value. |
Warning | 4 | Indicates that the progress bar should be shown in a warning state. |