854511bd98
* gdk/Color.custom: * gdk/DeviceAxis.custom: * gdk/Point.custom: * gdk/Rectangle.custom: Committed ToString patches contributed by Jasper van Putten <Jaspervp@gmx.net> svn path=/trunk/gtk-sharp/; revision=8057
24 lines
503 B
Text
24 lines
503 B
Text
// Gdk.Point.Rectangle - Gdk Rectangle class customizations
|
|
//
|
|
// Author: Jasper van Putten <Jaspervp@gmx.net>
|
|
//
|
|
// (c) 2002 Jasper van Putten
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
|
|
/// <summary>
|
|
/// ToString method
|
|
/// </summary>
|
|
///
|
|
/// <remarks>
|
|
/// returns a string representation of this Rectangle
|
|
///
|
|
/// </remarks>
|
|
|
|
public override string ToString ()
|
|
{
|
|
return "Gdk.Rectangle, x:" + this.x + ",y:" + this.y + ",width:" + this.width + ",height:" + this.height;
|
|
}
|
|
|
|
|