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

Supported states of StatusMarker

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

Syntax

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

Members

Member nameValueDescription
Normal0Normal state (data are in sync)
Null1Null (data are not available)
New2New (data was null and now it is not null)
Changed3Changed (data was changed since last save)
Deleted4Deleted (data was not null and now it is null)
Error5Data error
NA6Data status unkown
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