Ryujinx-GtkSharp/gtk/Entry.custom
Lee Mallabone 95a81a7706 Add a custom constructor to Entry, and fix API bugs with Widget and Frame.
svn path=/trunk/gtk-sharp/; revision=13021
2003-04-02 08:26:36 +00:00

20 lines
331 B
Plaintext

//
// 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;
}