gtk-sharp2.12.0.0Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details.Interface for text-editing widgets.GLib.IWrapperMethodSystem.VoidSelects a region of text.
An integer, the start of the selected region.
An integer, the end of the selected region.
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.
MethodSystem.StringRetrieves 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.
An integer; the start position
An integer; the end position
The characters between and (but not including) .MethodSystem.VoidDeletes 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.
An integer; the start position
An integer; the end position
MethodSystem.VoidCauses the characters in the current selection to be copied to the clipboard.MethodSystem.VoidCauses the characters in the current selection to be deleted.MethodSystem.BooleanGets the current selection bounds, if there is a selection
An IntPtr to store the start position in.
An IntPtr to store the end position in.
Boolean, TRUE if there is a selection.MethodSystem.VoidCauses the characters in the current selection to be copied to the clipboard and then deleted from the widget.MethodSystem.VoidCauses the contents of the clipboard to be pasted into the given widget at the current cursor position.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.PropertySystem.Int32The current cursor position.An integer position for the cursor.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().)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().)EventSystem.EventHandlerRaised when the user has changed the contents of the widget.MethodSystem.VoidInserts at .
A string to insert.
A pointer to the position within the Editable object for inserting the string.