Method GTK2.TextBuffer()->insert_range()
- Method insert_range
GTK2.TextBuffer
insert_range(GTK2.TextIter
iter
,GTK2.TextIter
start
,GTK2.TextIter
end
)- Description
Copies text, tags, and pixbufs between start and end (the order of start and end doesn't matter) and inserts the copy at iter. Used instead of simply getting/inserting text because it preserves images and tags. If start and end are in a different buffer from this buffer, the two buffers must share the same tag table.
Implemented via emissions of the insert-text and apply-tag signals, so expect those.