NamedNodeMap

Overview

The NamedNodeMap interface represents a collection of Attr objects. Objects inside a NamedNodeMap are not in any particular order, unlike NodeList, although they may be accessed by an index as in an array.

Location

Properties


item

 

property item[parIndex: String]: Int32 read write;

 

Int32 item[String parIndex] { get; set; }

 

subscript item(_ parIndex: String) -> Int32 { get{} set{} }

 

Int32 item[String parIndex] { __get; __set; }

 

Property item(parIndex As String) As Int32

length

 

property length: Int32 read;

 

Int32 length { get; }

 

var length: Int32 { get{} }

 

Int32 length { __get; }

 

ReadOnly Property length() As Int32