public CellEditableAdapter (ICellEditableImplementor implementor) { if (implementor == null) throw new ArgumentNullException ("implementor"); else if (!(implementor is GLib.Object)) throw new ArgumentException ("implementor must be a subclass of GLib.Object"); this.implementor = implementor as GLib.Object; }
static void StartEditing_cb(IntPtr inst, IntPtr evnt) { try { ICellEditableImplementor __obj = GLib.Object.GetObject(inst, false) as ICellEditableImplementor; __obj.StartEditing(Gdk.Event.GetEvent(evnt)); } catch (Exception e) { GLib.ExceptionManager.RaiseUnhandledException(e, false); } }
public CellEditableAdapter(ICellEditableImplementor implementor) { if (implementor == null) { throw new ArgumentNullException("implementor"); } else if (!(implementor is GLib.Object)) { throw new ArgumentException("implementor must be a subclass of GLib.Object"); } this.implementor = implementor as GLib.Object; }