[This is preliminary documentation and is subject to change.]

Defines different progressbar styles

Namespace: Tools.WindowsT.IndependentT
Assembly: Tools.Windows (in Tools.Windows.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public enum ProgressBarStyle
Visual Basic
Public Enumeration ProgressBarStyle
Visual C++
public enum class ProgressBarStyle
F#
type ProgressBarStyle
JScript
public enum ProgressBarStyle

Members

Member nameValueDescription
Indefinite2Progressbar does not show actual progresss. It only indicates that something is going on.
Definite0Progressbar indicates actual progress in form of bar or otherwise
IsFlagsGets value indicating if given value is of enum type which has FlagsAttribute applied
GetNameGets name of given enumeration value
GetConstantGets constant field that represents given enum value
GetValueGets value of enum in its unedlying type
IsDefinedGets value idicating if given value is defined as constant in enumeration

Remarks

Any value different from Indefinite means that progressbar indicates actual progress. When value differes from Definite the style is implementation dependent.

See Also