Text class

Annotated by:
  • DomName('Text')
Extends:
Implementors

Constructors

Text ( String data )

Instance Properties

wholeText String
read-only
on Events Inherited
read-only
nodes List<Node> Inherited
read/write
baseUri String Inherited
read-only
childNodes List<Node> Inherited
read-only
firstChild Node Inherited
read-only
lastChild Node Inherited
read-only
nextNode Node Inherited
read-only
nodeName String Inherited
read-only
nodeType int Inherited
read-only
nodeValue String Inherited
read-only
ownerDocument Document Inherited
read-only
parent Element Inherited
read-only
parentNode Node Inherited
read-only
previousNode Node Inherited
read-only
text String Inherited
read/write
data String Inherited
read/write
length int Inherited
read-only
nextElementSibling Element Inherited
read-only
previousElementSibling Element Inherited
read-only

Instance Methods

getDestinationInsertionPoints ( ) → List<Node>
splitText ( int offset ) → Text
toString Inherited ( ) → String
Print out a String representation of this Node.
addEventListener Inherited ( String type, dynamic listener(Event event), [bool useCapture] ) → void
removeEventListener Inherited ( String type, dynamic listener(Event event), [bool useCapture] ) → void
dispatchEvent Inherited ( Event event ) → bool
remove Inherited ( ) → void
Removes this node from the DOM.
replaceWith Inherited ( Node otherNode ) → Node
Replaces this node with another node.
insertAllBefore Inherited ( Iterable<Node> newNodes, Node refChild ) → Node
Inserts all of the nodes into this node directly before refChild.
append Inherited ( Node newChild ) → Node
Adds a node to the end of the child nodes list of this node.
clone Inherited ( bool deep ) → Node
Returns a copy of this node.
contains Inherited ( Node other ) → bool
Returns true if this node contains the specified node.
hasChildNodes Inherited ( ) → bool
Returns true if this node has any children.
insertBefore Inherited ( Node newChild, Node refChild ) → Node
Inserts all of the nodes into this node directly before refChild.
appendData Inherited ( String data ) → void
deleteData Inherited ( int offset, int length ) → void
insertData Inherited ( int offset, String data ) → void
replaceData Inherited ( int offset, int length, String data ) → void
substringData Inherited ( int offset, int length ) → String