IHTMLOptionsCollection Interface

IHTMLOptionsCollection interface

An HTMLOptionsCollection is a list of nodes representing HTML option element. An individual node may be accessed by either ordinal index or the node’s name or id attributes. Collections in the HTML DOM are assumed to be live meaning that they are automatically updated when the underlying document is changed.

See also the Document object Model (DOM) Level 2 HTML Specification. @since DOM Level 2

public interface IHTMLOptionsCollection : IEnumerable<Element>

Properties

NameDescription
getItem Returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null. (2 indexers)
getLength The number of nodes in the list.

Methods

NameDescription
namedItem(String)Method returns the indexth item in the collection. http://www.w3.org/TR/DOM-Level-2-HTML/html.html#HTMLOptionsCollection-namedItem

See Also