@arl/leaflet-tracksymbol2
    Preparing search index...

    Interface HTMLFormControlsCollection

    A collection of HTML form control elements.

    MDN Reference

    interface HTMLFormControlsCollection {
        length: number;
        item(index: number): Element;
        namedItem(name: string): Element | RadioNodeList;
        [index: number]: Element;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    Methods

    Properties

    length: number

    Sets or retrieves the number of objects in a collection.

    MDN Reference

    Methods

    • Retrieves an object from various collections.

      MDN Reference

      Parameters

      • index: number

      Returns Element

    • Returns the item with ID or name name from the collection.

      If there are multiple matching items, then a RadioNodeList object containing all those elements is returned.

      MDN Reference

      Parameters

      • name: string

      Returns Element | RadioNodeList