form property

HTMLFormElement? get form

The read-only HTMLLabelElement.form property returns an HTMLFormElement object which represents the form of which the label's associated control is a part, or null if there is either no associated control, or if that control isn't in a form.

This property is just a shortcut for HTMLLabelElement.control.form.

Implementation

external HTMLFormElement? get form;