2003-02-10 00:32:14 +00:00
|
|
|
//
|
|
|
|
// Gtk.Entry.custom - Allow customization of values in the GtkEntry
|
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
//
|
|
|
|
|
|
|
|
public int InsertText (string new_text)
|
|
|
|
{
|
|
|
|
int position = 0;
|
|
|
|
|
2003-02-24 03:13:08 +00:00
|
|
|
InsertText (new_text, ref position);
|
2003-02-10 00:32:14 +00:00
|
|
|
|
|
|
|
return position;
|
|
|
|
}
|