Dart API Referencedart:htmlText

Text Interface

In the DOM, the Text interface represents the textual content of an Element or Attr.  If an element has no markup within its content, it has a single child implementing Text that contains the element's text.  However, if the element contains markup, it is parsed into information items and Text nodes that form its children.

New documents have a single Text node for each block of text.  Over time, more Text nodes may be created as the document's content changes.  The Node.normalize() method merges adjacent Text objects back into a single node for each block of text.

Text also implements the CharacterData interface (which implements the Node interface).

Extends

CharacterData

Subinterfaces

CDATASection

Constructors

Code new Text(String data) #

Text(String data);

Methods

Code Text replaceWholeText(String content) #

Replaces the text of the current node and all logically adjacent nodes with the specified text.
Note: Do not use this method as it has been removed from the standard and is no longer implemented in recent browsers, like Firefox 10.
Text replaceWholeText(String content);

Code Text splitText(int offset) #

Breaks the node into two nodes at a specified offset.
Text splitText(int offset);

Fields

Code final String wholeText #

Returns all text of all Text nodes logically adjacent to this node, concatenated in document order.
final String wholeText;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.