IHTMLOptionsCollection.Item

IHTMLOptionsCollection indexer (1 of 2)

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.

public Element this[string name] { get; }
ParameterDescription
nameThe element name.

Return Value

Returns node.

See Also


IHTMLOptionsCollection indexer (2 of 2)

Method 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. http://www.w3.org/TR/DOM-Level-2-HTML/html.html#HTMLOptionsCollection-namedItem

public Element this[int index] { get; }
ParameterDescription
indexThe index.

Return Value

Returns node.

See Also