Gets or sets a value indicating whether this
Control (or its children) are enabled and accept user input.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax [DefaultValueAttribute(true)]
public virtual bool Enabled { get; set; }
<DefaultValueAttribute(true)>
Public Overridable Property Enabled As Boolean
Get
Set
[<DefaultValueAttribute(true)>]
abstract Enabled : bool with get, set
[<DefaultValueAttribute(true)>]
override Enabled : bool with get, set
Property Value
Type:
Booleantrue if enabled; otherwise,
false.
Remarks
Typically when a control is disabled, the user cannot do anything with the control or any of its children.
Including for example, selecting text in a text control.
Certain controls can have a 'Read Only' mode, such as
ReadOnly which allow the user to
select text, but not change its contents.
See Also