TASKBAR_STATES Enumeration

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Fields
 
Name Value Description
Error 4
Indeterminate 1
NoProgress 0
Normal 2
Paused 8
[Flags]
 public enum TASKBAR_STATES : int
 {
     NoProgress = 0,
     Indeterminate = 0x1,
     Normal = 0x2,
     Error = 0x4,
     Paused = 0x8
 }
					
This language is not supported or no code example is available.

In this article

Definition