Ryujinx-GtkSharp/gtk/Entry.custom

15 lines
281 B
Plaintext
Raw Normal View History

//
// 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, new_text.Length, ref position);
return position;
}