Dom.IParentNode Interface Reference

Detailed Description

The interface for all parent nodes.

Inheritance diagram for Dom.IParentNode:
Dom.Node Css.SparkInformerNode Dom.AttributeNode Dom.CharacterData Dom.Document Dom.DocumentFragment Dom.DocumentType Dom.Element Dom.Comment Dom.TextNode Css.ReflowDocument Dom.LangDocument Dom.LangElement Dom.RadioNodeList MathML.MathElement Speech.SpeechElement Svg.SVGElement

Properties

NodeList childNodes [get]
 The kids of this node. More...
 
Node parentNode [get]
 The parent node. More...
 
Element parentElement [get]
 The parent element. More...
 
int childCount [get]
 The number of kids of this node. More...
 
int childElementCount [get]
 The number of child elements of this parent. More...
 
HTMLCollection children [get]
 The kids of this node. More...
 
Element firstElementChild [get]
 The first element child of this node. More...
 
Element lastElementChild [get]
 The last element child of this node. More...
 

Property Documentation

int Dom.IParentNode.childCount
get

The number of kids of this node.

int Dom.IParentNode.childElementCount
get

The number of child elements of this parent.

NodeList Dom.IParentNode.childNodes
get

The kids of this node.

HTMLCollection Dom.IParentNode.children
get

The kids of this node.

Element Dom.IParentNode.firstElementChild
get

The first element child of this node.

Element Dom.IParentNode.lastElementChild
get

The last element child of this node.

Element Dom.IParentNode.parentElement
get

The parent element.

Node Dom.IParentNode.parentNode
get

The parent node.