Class NodeList

NodeList class

NodeList は、このコレクションの実装方法を定義または制約することなく、順序付けられたノードのコレクションの抽象化を提供します。

public abstract class NodeList : DOMObject, IEnumerable<Node>

プロパティ

名前説明
abstract Item { get; }メソッドは、コレクション内の index 番目のアイテムを返します。 index がリスト内のノード数以上の場合、null が返されます。
abstract Length { get; }リスト内のノード数。

メソッド

名前説明
abstract GetEnumerator()コレクションを反復処理する列挙子を返します。
override GetPlatformType()このメソッドは、ECMAScript オブジェクトを取得するために使用されますType.

関連項目