Package | dom.core |
Interface | public interface DOMImplementationList |
Introduced in: | DOM 3 Core |
See also
Property | Defined By | ||
---|---|---|---|
DOM 3 Core length : Number [read-only]
The number of DOMImplementations in the list. | DOMImplementationList |
Method | Defined By | ||
---|---|---|---|
Returns the indexth item in the collection. | DOMImplementationList |
DOM 3 Core length | property |
length:Number
[read-only] Introduced in: | DOM 3 Core |
The number of DOMImplementations in the list.
The range of valid child node indices is 0 to length-1 inclusive.
public function get length():Number
See also
DOM 3 Core item | () | method |
public function item(index:Number):DOMImplementation
Introduced in: | DOM 3 Core |
Returns the indexth item in the collection.
If index is greater than or equal to the number of DOMImplementations in the list, this returns null.
Parameters
index:Number — Index into the collection.
|
DOMImplementation — The DOMImplementation at the indexth position in the
DOMImplementationList, or null if that is not a valid index.
|
See also