DOMString.insertData

Inserts a string of type XMLCh within the existing DOMString at an arbitrary position

  1. void insertData(size_t offset, DOMString data)
  2. void insertData(size_t offset, XMLCh[] other)
    class DOMString
    @safe pure nothrow
    void
    insertData
    (
    size_t offset
    ,)

Parameters

offset size_t

The offset from the beginning at which the insertion needs to be done in this object

other XMLCh[]

The DOMString containing the data that needs to be inserted

Meta