mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 00:45:41 +00:00
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
25 lines
463 B
Plaintext
25 lines
463 B
Plaintext
// Gdk.Point.DeviceAxis - Gdk DeviceAxis 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 DeviceAxis
|
|
///
|
|
/// </remarks>
|
|
|
|
public override string ToString ()
|
|
{
|
|
return "Gdk.DeviceAxis, max:" + this.max + ",min:" + this.min;
|
|
}
|
|
|
|
|