From 8e531544498613ea944e5ee807877a0f8a1ef857 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Fri, 28 Feb 2003 07:10:53 +0000 Subject: [PATCH] Update color docs with my new custom files svn path=/trunk/gtk-sharp/; revision=12053 --- doc/en/Gdk/Color.xml | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/doc/en/Gdk/Color.xml b/doc/en/Gdk/Color.xml index ee67a928d..7109313ae 100644 --- a/doc/en/Gdk/Color.xml +++ b/doc/en/Gdk/Color.xml @@ -76,6 +76,51 @@ To be added + + + Constructor + + + + + + + + Color constructor from RGB byte values + Red value (0-255) + Green value (0-255) + Blue value (0-255) + The constructed color structure + + + This constructs the color from three byte values for red, + green and blue. Notice that the Gdk.Color structure + actually uses 16-bit color values, so the byte values are + mapped into the 16-bit value space. This is just a + convenience routine to initialize this structure. + + + + + + + Constructor + + + + + + Color constructor from a System.Drawing Color + The color value + The constructed color structure + + + Use this constructor to create new color values based on + an existing color from a . + + + + Method