Interface IInputElement
- Namespace
- DotNetBrowser.Dom
- Assembly
- DotNetBrowser.dll
Represents the DOM element with <input>
tag.
public interface IInputElement : IFormControlElement, IElement, INode, IEventTarget, ISearchContext, IAutoDisposable
- Inherited Members
Properties
- Checked
Gets or sets the checked attribute of the input DOM element with the type
'checkbox'
or'radio'
.
- File
Gets or sets an absolute or relative path to a file if the current input DOM element has the type attribute with the 'file' value.
- Files
Gets or sets the collection of absolute or relative paths to files if the current input DOM element has the type attribute with the 'file' value.
- IsCheckBox
Indicates whether the DOM element's type attribute has the 'checkbox' value.
- IsEmailField
Indicates whether the DOM element's type attribute has the 'email' value.
- IsFile
Indicates whether the DOM element's type attribute has the 'file' value.
- IsMultipleFile
Indicates whether the DOM element has both the type attribute with the 'file' value, and the multiple attribute, for example:
<input type="file" multiple>
- IsPasswordField
Indicates whether the DOM element's type attribute has the 'password' value.
- IsRadioButton
Indicates whether the DOM element's type attribute has the 'radio' value.
- IsText
Indicates if this input element is a text field and the type attribute value of the input HTML element is 'number'.
- IsTextField
Indicates if the DOM element's type attribute has the
'text'
value.