95a81a7706
svn path=/trunk/gtk-sharp/; revision=13021
19 lines
331 B
Text
19 lines
331 B
Text
//
|
|
// 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;
|
|
|
|
InsertText (new_text, ref position);
|
|
|
|
return position;
|
|
}
|
|
|
|
public Entry(string initialText): this()
|
|
{
|
|
Text = initialText;
|
|
}
|