TextBuffer.insert

Inserts len bytes of text at position iter. If len is -1, text must be nul-terminated and will be inserted in its entirety. Emits the "insert_text" signal; insertion actually occurs in the default handler for the signal. iter is invalidated when insertion occurs (because the buffer contents change), but the default signal handler revalidates it to point to the end of the inserted text.

  1. void insert(TextIter iter, string text)
    class TextBuffer
    void
    insert
    (,
    string text
    )
  2. void insert(TextIter iter, string text, int len)

Parameters

iter TextIter

a position in the buffer

text string

UTF-8 format text to insert

Meta