up vote 3 down vote favorite
share [g+] share [fb]
//clWebSnow = $FAFAFF; defined in Graphics.pas
Listbox1.Items.Add( ColorToString( clRed ) );
Listbox1.Items.Add( ColorToString( clWebSnow ) );

How can you return "WebSnow" as a string to show the color as a color constant as WebSnow?

All i can seem to get is '$FAFAFF' as a string with webcolors stored as a string while the StandardColors and ExtendedColors return the color constant values.

Example: clRed displays as Red in the listbox and displays as Red in the Label caption. clWebSnow displays as '$FAFAFF' in the listbox and displays as $FAFAFF in the label caption.

Bill

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

Look at RGBToWebColorName in GraphUtil.

  Label1.Caption := RGBToWebColorName(clWebSnow); // returns "clWebSnow"
link|improve this answer
Thanks Bruce that worked. Thank-you – Bill Miller Aug 12 '09 at 23:00
If you're interested, there are some more conversion and utility methods in GraphUtils.pas for web and RGB colours. – Bruce McGee Aug 13 '09 at 1:21
1  
Online documentation for GrahUtil is available here. docs.embarcadero.com/products/rad_studio/delphiAndcpp2009/… – stukelly Aug 13 '09 at 7:21
Ah, documentation. The developer's last resort. :) Thanks for the link. – Bruce McGee Aug 13 '09 at 11:07
feedback

ColorToString looks color names up with an IntToIdent map using the const array "Colors" defined in Graphics.pas. Probably the only way to get around this is to use a custom Graphics.pas in which you've added new entries to the array.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.