Click or drag to resize

IInputElementIsCheckBox Property

Indicates whether the DOM element's type attribute has the 'checkbox' value.

Namespace:  DotNetBrowser.Dom
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
bool IsCheckBox { get; }

Property Value

Type: Boolean
true if the DOM element's type attribute has the 'checkbox' value. When the return value is true, the checked state of the DOM element can be retrieved or changed via the Checked property.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IInputElement has already been disposed.
See Also