Splits the node into two nodes at the specified offset, keeping both in the tree as siblings.
[Visual Basic] Overridable Public Function SplitText( _ ByVal offset As Integer _ ) As XmlText [C#] public virtual XmlText SplitText( int offset ); [C++] public: virtual XmlText* SplitText( int offset ); [JScript] public function SplitText( offset : int ) : XmlText;
After this method is called, this node only contains all the content up to the offset point. A new node of the same type, which is inserted as the next sibling of this node, contains all the content at and after the offset point. When the offset is equal to the length of this node, the new node has no data.