Gtk.TextBuffer::remove-tag

function callback(text_buffer, tag:Gtk.TextTag, start:Gtk.TextIter, end:Gtk.TextIter, ):void;

The ::remove-tag signal is emitted to remove all occurrences of tag from a range of text in a Gtk.TextBuffer. Removal actually occurs in the default handler.

Note that if your handler runs before the default handler it must not invalidate the start and end iters (or has to revalidate them).

See also: Gtk.TextBuffer.prototype.remove_tag.

text_buffer

instance of Gtk.TextBuffer that is emitting the signal

tag

the tag to be removed

start

the start of the range the tag is removed from

end

the end of the range the tag is removed from