Enum
TaskbarProgressState

Definition

Namespace:Telerik.WinControls.Taskbar

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public enum TaskbarProgressState

Fields

Error

The progress indicator turns red to show that an error has occurred in one of the windows that is broadcasting progress. This is a determinate state. If the progress indicator is in the indeterminate state, it switches to a red determinate display of a generic percentage not indicative of actual progress.

Declaration

cs-api-definition
Error = 3

Field Value

TaskbarProgressState

Indeterminate

The progress indicator does not grow in size, but cycles repeatedly along the length of the taskbar button. This indicates activity without specifying what proportion of the progress is complete. Progress is taking place, but there is no prediction as to how long the operation will take.

Declaration

cs-api-definition
Indeterminate = 1

Field Value

TaskbarProgressState

NoProgress

Stops displaying progress and returns the button to its normal state. Use this flag to dismiss the progress bar when the operation is complete or canceled.

Declaration

cs-api-definition
NoProgress = 0

Field Value

TaskbarProgressState

Normal

The green progress indicator grows in size from left to right in proportion to the estimated amount of the operation completed. This is a determinate progress indicator; a prediction is being made as to the duration of the operation.

Declaration

cs-api-definition
Normal = 2

Field Value

TaskbarProgressState

Paused

The progress indicator turns yellow to show that progress is currently stopped in one of the windows but can be resumed by the user. No error condition exists and nothing is preventing the progress from continuing. This is a determinate state. If the progress indicator is in the indeterminate state, it switches to a yellow determinate display of a generic percentage not indicative of actual progress.

Declaration

cs-api-definition
Paused = 4

Field Value

TaskbarProgressState