Method
GtkTextBufferremove_tag_by_name
Declaration [src]
void
gtk_text_buffer_remove_tag_by_name (
GtkTextBuffer* buffer,
const gchar* name,
const GtkTextIter* start,
const GtkTextIter* end
)
Description [src]
Calls gtk_text_tag_table_lookup() on the buffer’s tag table to
get a GtkTextTag, then calls gtk_text_buffer_remove_tag().
Parameters
name-
Type:
const gchar*Name of a
GtkTextTag.The data is owned by the caller of the method. The value is a NUL terminated UTF-8 string. start-
Type:
GtkTextIterOne bound of range to be untagged.
The data is owned by the caller of the method. end-
Type:
GtkTextIterOther bound of range to be untagged.
The data is owned by the caller of the method.