The DOMCharacterData interface extends Node with a set of attributes and methods for accessing character data in the DOM. For clarity this set is defined here rather than on each object that uses these attributes and methods. No DOM objects correspond directly to CharacterData, though Text and others do inherit the interface from it. All offsets in this interface start from 0.


Instance Methods Index

 o GetData()
Get the character data of the node that implements this interface.
 o SetData( String arg )
Sets the character data of the node that implements this interface.
 o GetLength()
The number of characters that are available through data and the substringData method.
 o SubstringData( Integer offset, Integer count )
Extracts a range of data from the node.
 o AppendData( String arg )
Append the string to the end of the character data of the node.
 o InsertData( Integer offset, String arg )
Insert a string at the specified character offset.
 o DeleteData( Integer offset, Integer count )
Remove a range of characters from the node.
 o ReplaceData( Integer offset, Integer count, String arg )
Replace the characters starting at the specified character offset with the specified string.

Instance Methods

 o GetData
 String GetData()

Get the character data of the node that implements this interface.

Returns:
The character data of this node.
 o SetData
 Void SetData(
          String arg )

Sets the character data of the node that implements this interface.

Parameters:
arg  -  The data to set for this node.
 
 o GetLength
 Integer GetLength()

The number of characters that are available through data and the substringData method below. This may have the value zero, i.e., CharacterData nodes may be empty.

Returns:
The number of characters available.
 o SubstringData
 String SubstringData(
               Integer offset,
               Integer count )

Extracts a range of data from the node.

Parameters:
offset  -  Start offset of substring to extract.
count  -  The number of characters to extract.
Returns:
The specified substring. If the sum of offset and count exceeds the length, then all characters to the end of the data are returned.
 o AppendData
 Void AppendData(
            String arg )

Append the string to the end of the character data of the node. Upon success, data provides access to the concatenation of data and the DOMString specified.

Parameters:
arg  -  The DOMString to append.
 
 o InsertData
 Void InsertData(
            Integer offset,
            String arg )

Insert a string at the specified character offset.

Parameters:
offset  -  The character offset at which to insert.
arg  -  The DOMString to insert.
 
 o DeleteData
 Void DeleteData(
            Integer offset,
            Integer count )

Remove a range of characters from the node. Upon success, data and length reflect the change.

Parameters:
offset  -  The offset from which to remove characters.
count  -  The number of characters to delete. If the sum of offset and count exceeds length then all characters from offset to the end of the data are deleted.
 
 o ReplaceData
 Void ReplaceData(
            Integer offset,
            Integer count,
            String arg )

Replace the characters starting at the specified character offset with the specified string.

Parameters:
offset  -  The offset from which to start replacing.
count  -  The number of characters to replace. If the sum of offset and count exceeds length, then all characters to the end of the data are replaced (i.e., the effect is the same as a remove method call with the same range, followed by an append method invocation).
arg  -  The DOMString with which the range must be replaced.