InputElement InputElementType EnumerationC# API
Enumerates the different types of InputElement that are available.

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

public enum InputElementType
Members

  Member nameValueDescription
other0 Represents an input type not described by the other values.
button1 Represents a clickable button.
checkbox2 Represents a box that can be either checked or unchecked.
file3 Represents a file selector, usually displayed as a Choose File button which opens a standard file dialog when clicked.
hidden4 Represents an InputElement which has a value, but doesn't appear on the page.
image5 Represents a submit button but displayed as a specified image instead of the standard button graphic.
password6 Represents a text box in which typed characters are masked with dots.
radio7 Represents one of a collection of radio buttons, only one of which can be selected at once
reset8 Represents a button which resets all form values to their defaults when clicked.
submit9 Represents a button which performs the form's action (usually submitting the form data as a GET or POST request) when clicked.
text10 Represents a text box.
Remarks

The type of an InputElement is determined by the "type" attribute of the HTML tag, e.g. <input type="text" name="firstname">. The type determines the appearance and behaviour of the InputElement when the HTML is viewed in a browser.
See Also