Package ch.bailu.gtk.gtk
Interface EntryBuffer.OnDeletedText
- Enclosing class:
- EntryBuffer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onDeletedText
(int position, int n_chars) The text is altered in the default handler for this signal.
-
Method Details
-
onDeletedText
void onDeletedText(int position, int n_chars) The text is altered in the default handler for this signal.
If you want access to the text after the text has been modified,
use %G_CONNECT_AFTER.- Parameters:
position
- the position the text was deleted at.n_chars
- The number of characters that were deleted.
-