signal callback delegate or function to connect
void callback(gtk.text_tag.TextTag tag, gtk.text_iter.TextIter start, gtk.text_iter.TextIter end, gtk.text_buffer.TextBuffer textBuffer)
tag the tag to be removed (optional)
start the start of the range the tag is removed from (optional)
end the end of the range the tag is removed from (optional)
textBuffer the instance the signal is connected to (optional)
Yes.After to execute callback after default handler, No.After to execute before (default)
Signal ID
Connect to RemoveTag signal.
Emitted to remove all occurrences of tag from a range of text in a gtk.text_buffer.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.text_buffer.TextBuffer.removeTag.