static void CutText_cb(IntPtr inst, int start_pos, int end_pos)
 {
     try {
         IEditableTextImplementor __obj = GLib.Object.GetObject(inst, false) as IEditableTextImplementor;
         __obj.CutText(start_pos, end_pos);
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }