Enumerates the different types of InputElement that are available.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.8.37 (1.0.0.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
other | 0 | Represents an input type not described by the other values. | |
button | 1 | Represents a clickable button. | |
checkbox | 2 | Represents a box that can be either checked or unchecked. | |
file | 3 | Represents a file selector, usually displayed as a Choose File button which opens a standard file dialog when clicked. | |
hidden | 4 | Represents an InputElement which has a value, but doesn't appear on the page. | |
image | 5 | Represents a submit button but displayed as a specified image instead of the standard button graphic. | |
password | 6 | Represents a text box in which typed characters are masked with dots. | |
radio | 7 | Represents one of a collection of radio buttons, only one of which can be selected at once | |
reset | 8 | Represents a button which resets all form values to their defaults when clicked. | |
submit | 9 | Represents a button which performs the form's action (usually submitting the form data as a GET or POST request) when clicked. | |
text | 10 | Represents a text box. |
Remarks
See Also