Method
GtkTextBufferadd_mark
since: 2.12
Declaration [src]
void
gtk_text_buffer_add_mark (
GtkTextBuffer* buffer,
GtkTextMark* mark,
const GtkTextIter* where
)
Description [src]
Adds the mark at position where
. The mark must not be added to
another buffer, and if its name is not NULL
then there must not
be another mark in the buffer with the same name.
Emits the GtkTextBuffer::mark-set
signal as notification of the mark’s
initial placement.
Available since: 2.12
Parameters
mark
-
Type:
GtkTextMark
The mark to add.
The data is owned by the caller of the method. where
-
Type:
GtkTextIter
Location to place mark.
The data is owned by the caller of the method.