public abstract class XMLCharacterData extends XMLNode implements CharacterData:
Base implementation for DOM CharacterData nodes.
@example `klyn import klyn.io.xml.dom
text = XMLText("hello", document) text.appendData(" world")
| Modifier and Type | Member | Description |
|---|---|---|
| public property | datadata as String: |
No summary. |
| public readonly property | lengthlength as Int: |
No summary. |
| Modifier and Type | Member | Description |
|---|---|---|
| public | appendDataappendData(arg as String) as Void throws DOMException: |
Performs a DOM operation. |
| public | deleteDatadeleteData(offset as Int, count as Int) as Void throws DOMException: |
Performs a DOM operation. |
| public | insertDatainsertData(offset as Int, arg as String) as Void throws DOMException: |
Performs a DOM operation. |
| public | replaceDatareplaceData(offset as Int, count as Int, arg as String) as Void throws DOMException: |
Performs a DOM operation. |
| public | substringDatasubstringData(offset as Int, count as Int) as String throws DOMException: |
Performs a DOM operation. |