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 applied tag (optional)
start the start of the range the tag is applied to (optional)
end the end of the range the tag is applied to (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 ApplyTag signal.
Emitted to apply a tag to a range of text in a gtk.text_buffer.TextBuffer.
Applying 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.applyTag, gtk.text_buffer.TextBuffer.insertWithTags, gtk.text_buffer.TextBuffer.insertRange.