Represents an HTML textarea element within an HTML form.
Inheritance Hierarchy
Facilita.Web HtmlElement
Facilita.Web TextAreaElement
Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
public class TextAreaElement : HtmlElement
Remarks
A TextAreaElement is used to define a multi-line text input control.
e.g.
<textarea name="userMessage" rows="4" cols="50">
Some lines of text.
</textarea>
A TextAreaElement is submitted as a key/value pair when the containing Form is sent to the web server.
See Also