<?xml version="1.0" encoding="utf-8"?>
<interface name="DOM_Text" short="the Document Object Model (DOM) DOM_Text interface">

<comments>
	Copyright 2003 Michael B. Allen &lt;mballen@erols.com&gt;
	Generated by CStyleX 0.1.1
</comments>

<include>domc.h</include>

<title>DOM_Text</title>

<desc>
The <tt>DOM_Text</tt> node inherits the structure of the <tt>DOM_CharacterData</tt> interface. It represents the character data between elements (and much less frequently the character data associated with an attribute of an element). The length of the text string may be retrived with the <tt>DOM_CharacterData_getLength</tt> function.
</desc>

<group>
<title>The DOM_Text functions</title>

<meth name="splitText">
<pre>DOM_Text *DOM_Text_splitText(DOM_Text *this, int offset);</pre>
<param name="this"/>
<param name="offset"/>
<desc>
The <tt>DOM_Text_splitText</tt> function splits <tt>this</tt> <tt>DOM_Text</tt> node at the specified offset into two adjacent <tt>DOM_Text</tt> nodes. The first is a string <tt>offset</tt> size in length whereas the seconds is the remain string. If <tt>offset</tt> is equal to the length of the string the new sibling is created with a string of 0 length.
</desc>
<ret>
The new <tt>DOM_Text</tt> node containing the text that was at <tt>offset</tt>.
</ret>
</meth>
</group>

</interface>

