2002-10-08 06:49:11 +00:00
|
|
|
// Gdk.Color.custom - Gdk Color 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 color
|
|
|
|
///
|
|
|
|
/// </remarks>
|
|
|
|
|
|
|
|
public override string ToString ()
|
|
|
|
{
|
2003-02-13 03:10:22 +00:00
|
|
|
return String.Format ("rgb:{0:x}/{1:x}/{2:x}", red, green, blue);
|
2002-10-08 06:49:11 +00:00
|
|
|
}
|