HtmlElement::Enabled Property

 

Gets or sets whether the user can input data into this element.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property bool Enabled {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if the element allows user input; otherwise, false.

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.

.NET Framework
Available since 2.0
Return to top
Show: