// Gdk.Point.Rectangle - Gdk Rectangle class customizations // // Author: Jasper van Putten // // (c) 2002 Jasper van Putten // // This code is inserted after the automatically generated code. /// /// ToString method /// /// /// /// returns a string representation of this Rectangle /// /// public override string ToString () { return "Gdk.Rectangle, x:" + this.x + ",y:" + this.y + ",width:" + this.width + ",height:" + this.height; }