mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 19:55:32 +00:00
71bfd023be
* gdk/Point.custom: Use (x,y) instead. * gdk/Color.custom: Use the X rgb color format specification. * gdk/Rectangle.custom: Use the X geometry format for Rectangles. svn path=/trunk/gtk-sharp/; revision=8066
25 lines
428 B
Plaintext
25 lines
428 B
Plaintext
// Gdk.Point.custom - Gdk Point 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 point
|
|
///
|
|
/// </remarks>
|
|
|
|
public override string ToString ()
|
|
{
|
|
return String.Format ("({0},{1})", x, y);
|
|
}
|
|
|
|
|