TextAreaElement ClassC# API
Represents an HTML textarea element within an HTML form.
Inheritance Hierarchy

System Object
  Facilita.Web HtmlElement
    Facilita.Web TextAreaElement

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public class TextAreaElement : HtmlElement
Remarks

An HTML element is everything from the start tag to the end tag.

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