Link Search Menu Expand Document

XmlCharacterData.DeleteData Method

Explanation Delete the string
Call format cd.DeleteData( offset, count )
Return value None
Arguments integer offset Position to delete (specified by the number of characters)
integer count Length to delete (specified by the number of characters)
Exception DOM-1 INDEX_SIZE_ERR
DOM-7 NO_MODIFICATION_ALLOWED_ERR
Example of use
    var text = elm.FirstChild;
    text.DeleteData(10, 3); 
    
Related item XmlText class