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

Gets or sets state of Status

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

Syntax

C#
[KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Data)]
[DefaultValueAttribute(typeof(ControlState), "Enabled")]
public ControlState StatusState { get; set; }
Visual Basic
<KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Data)> _
<DefaultValueAttribute(GetType(ControlState), "Enabled")> _
Public Property StatusState As ControlState
	Get
	Set
Visual C++
[KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories::Data)]
[DefaultValueAttribute(typeof(ControlState), L"Enabled")]
public:
property ControlState StatusState {
	ControlState get ();
	void set (ControlState value);
}
F#
[<KnownCategoryAttribute(KnownCategoryAttribute..::..KnownCategories.Data)>]
[<DefaultValueAttribute(typeof(ControlState), "Enabled")>]
member StatusState : ControlState with get, set
JScript
function get StatusState () : ControlState
function set StatusState (value : ControlState)

Exceptions

ExceptionCondition
System.ComponentModel..::..InvalidEnumArgumentExceptionValue being set is not member of ControlState

See Also