Dart API Referencedart:htmlHTMLOptionsCollection

HTMLOptionsCollection Interface

HTMLOptionsCollection is an interface representing a collection of HTML option elements (in document order) and offers methods and properties for traversing the list as well as optionally altering its items. This type is returned solely by the "options" property of select.

Extends

HTMLCollection

Methods

Code void remove(int index) #

void remove(int index);

Fields

Code int length #

As optionally allowed by the spec, Mozilla allows this property to be set, either removing options at the end when using a shorter length, or adding blank options at the end when setting a longer length. Other implementations could potentially throw a DOMException.
int length;

Code int selectedIndex #

int selectedIndex;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.