Click or drag to resize

IInputElementIsMultipleFile Property

Indicates whether the DOM element has both the type attribute with the 'file' value, and the multiple attribute, for example: <input type="file" multiple>

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

Property Value

Type: Boolean
true if the DOM element has both the type attribute with the 'file' value, and the multiple attribute.
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IInputElement has already been disposed.
See Also