IHTMLOptionsCollection.Item

IHTMLOptionsCollection indexer (1 of 2)

コレクション内の index 番目のアイテムを返します。 index がリスト内のノード数以上の場合、null が返されます。

public Element this[string name] { get; }
パラメータ説明
name要素名。

戻り値

ノードを返します。

関連項目


IHTMLOptionsCollection indexer (2 of 2)

メソッドは、コレクション内の index 番目のアイテムを返します。 index がリスト内のノード数以上の場合、null を返します。 http://www.w3.org/TR/DOM-Level-2-HTML/html.html#HTMLOptionsCollection-namedItem

public Element this[int index] { get; }
パラメータ説明
indexインデックス。

戻り値

ノードを返します。

関連項目