HtmlElement.Enabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets whether the user can input data into this element.
public:
property bool Enabled { bool get(); void set(bool value); };
public bool Enabled { get; set; }
member this.Enabled : bool with get, set
Public Property Enabled As Boolean
Property Value
true
if the element allows user input; otherwise, false
.
Remarks
For FORM
elements such as text boxes and radio buttons, setting Enabled to false
will prevent the user from using these form fields. For other elements, such as DIV
or SPAN
, setting Enabled to false
will cause all text within the element to appear shaded; however, the text will still be selectable. To cancel selection, add an event handler for the unexposed onselectstart
event using the AttachEventHandler method.