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

Possible state of the message box class instance

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

Syntax

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

Members

Member nameValueDescription
Created0Instance have been created, but message box have not been shown yet. You can modify message box properties.
Shown1Message bos was shown to user and waits for user action. Only some properties can be modificated with effect.
Closed2Message box was closed
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

See Also