InputElement ClassC# API
Represents an HTML input element within an HTML form.
Inheritance Hierarchy

System Object
  Facilita.Web HtmlElement
    Facilita.Web InputElement
      Facilita.Web FileElement
      Facilita.Web ImageButtonElement

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

public class InputElement : HtmlElement
Remarks

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

e.g. <input type="text" name="firstname"> would be represented by a single InputElement object.

An InputElement is submitted as a key/value pair when the containing Form is sent to the web server.

See Also