vote up 3 vote down star
//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

flag

2 Answers

vote up 7 vote down check

Look at RGBToWebColorName in GraphUtil.

  Label1.Caption := RGBToWebColorName(clWebSnow); // returns "clWebSnow"
link|flag
Thanks Bruce that worked. Thank-you – Bill Miller Aug 12 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 at 1:21
1  
Online documentation for GrahUtil is available here. docs.embarcadero.com/products/rad_studio/… – stukelly Aug 13 at 7:21
Ah, documentation. The developer's last resort. :) Thanks for the link. – Bruce McGee Aug 13 at 11:07
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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