HTMLFormControlsCollection extension type

The HTMLFormControlsCollection interface represents a collection of HTML form control elements, returned by the HTMLFormElement interface's HTMLFormElement.elements property.

This interface replaces one method from HTMLCollection, on which it is based.


API documentation sourced from MDN Web Docs.

on
Implemented types
Available extensions

Properties

hashCode int
The hash code for this object.
no setterinherited
length int
The HTMLCollection.length property returns the number of items in a HTMLCollection.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

item(int index) Element?
The HTMLCollection method item() returns the element located at the specified offset into the collection.
inherited
namedItem(String name) JSObject?
The HTMLFormControlsCollection.namedItem() method returns the RadioNodeList or the Element in the collection whose name or id match the specified name, or null if no node matches.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited