Description Usage Arguments Details Value Author(s)
Returns whether the character at iter
is within an editable region
of text. Non-editable text is "locked" and can't be changed by the
user via GtkTextView
. This function is simply a convenience
wrapper around gtkTextIterGetAttributes
. If no tags applied
to this text affect editability, default.setting
will be returned.
1 | gtkTextIterEditable(object, default.setting)
|
|
an iterator |
|
|
You don't want to use this function to decide whether text can be
inserted at iter
, because for insertion you don't want to know
whether the char at iter
is inside an editable range, you want to
know whether a new character inserted at iter
would be inside an
editable range. Use gtkTextIterCanInsert
to handle this
case.
[logical] whether iter
is inside an editable range
Derived by RGtkGen from GTK+ documentation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.