DOMCharacterData->replaceData()
(no version information, might be only in CVS)
DOMCharacterData->replaceData() -- Replace a substring within the DOMCharacterData nodeOpis
class DOMCharacterData {void replaceData ( int offset, int count, string data )
}
Replace count characters starting from position
offset with data.
Parametry
offsetThe offset from which to start replacing.
countThe number of characters to replace. If the sum of
offsetandcountexceeds the length, then all characters to the end of the data are replaced.dataThe string with which the range must be replaced.
Błędy/Wyjątki
- DOM_INDEX_SIZE_ERR
Raised if
offsetis negative or greater than the number of 16-bit units in data, or ifcountis negative.
Patrz także
| DOMCharacterData->appendData() |
| DOMCharacterData->deleteData() |
| DOMCharacterData->insertData() |
| DOMCharacterData->substringData() |
| Poprzedni | Spis treści | Następny |
| DOMCharacterData->insertData() | Początek rozdziału |