gtk-sharpGtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.GLib.IWrapperInterface for text-editing widgets.EventSystem.EventHandlerRaised when the user has changed the contents of the widget.MethodSystem.VoidCauses the characters in the current selection to be copied to the clipboard.MethodSystem.VoidCauses the characters in the current selection to be copied to the clipboard and then deleted from the widget.MethodSystem.VoidCauses the characters in the current selection to be deleted.MethodSystem.Void
An integer; the start position
An integer; the end position
Deletes a sequence of characters. The characters that are deleted are those characters at positions from up to, but not including . If is negative, then the the characters deleted will be those characters from to the end of the text.MethodSystem.String
An integer; the start position
An integer; the end position
Retrieves a sequence of characters. The characters that are retrieved are those characters at positions from up to, but not including . If is negative, then the the characters retrieved will be those characters from to the end of the text.The characters between and (but not including) .MethodSystem.Boolean
To be added.
To be added.
Gets the current selection bounds, if there is a selectionBoolean, TRUE if there is a selection.MethodSystem.Void
A string to insert.
A pointer to the position within the Editable object for inserting the string.
Inserts at .PropertySystem.BooleanWhether or not the user can edit the text in the editable widget or not.A boolean; TRUE if the user can edit the text.MethodSystem.VoidCauses the contents of the clipboard to be pasted into the given widget at the current cursor position.PropertySystem.Int32The current cursor position.An integer position for the cursor.MethodSystem.Void
To be added.
To be added.
Selects a region of text. The characters that are selected are those characters at positions from up to, but not including . If is negative, then the the characters selected will be those characters from to the end of the text.
EventGtk.TextDeletedHandlerRaised whenever the user deletes text.The default handler for this signal will normally be responsible for inserting the text, so by connecting to this signal and then stopping the signal with gtk_signal_emit_stop(), it is possible to modify the inserted text, or prevent it from being inserted entirely. The and parameters are interpreted as for (FIXME: need equivalent for gtk_signal_emit_stop().)EventGtk.TextInsertedHandlerRaised whenever the user inserts text.The default handler for this signal will normally be responsible for inserting the text, so by connecting to this signal and then stopping the signal with gtk_signal_emit_stop(), it is possible to modify the inserted text, or prevent it from being inserted entirely. (FIXME: Need Gtk# equivalent for gtk_signal_emit_stop().)