=head1 NAME XML::GDOME::Text - Interface Text implementation. =head1 SYNOPSIS $text = $t->splitText($offset); =head1 CLASS INHERITANCE L > L > XML::GDOME::Text =head1 METHODS =over 4 =item $text = $t->splitText($offset); Breaks this node into two nodes at the specified I, keeping both in the tree as siblings. After being split, this node will contain all the content up to the I point. A new node of the same type, which contains all the content at and after the I point, is returned. If the original node had a parent node, the new node is inserted as the next sibling of the original node. When the I is equal to the length of this node, the new node has no data. I: the new node, of the same type as this node. C: Raised if the specified I is greater than the number of characters in data. C: Raised if this node is readonly. =back