vote up 1 vote down star

What is the best way to turn strings like "red", "green", "yellow", "aliceblue", etc... into the actual System.Drawing.Color value?

I was looking at reflection and something about that didn't seem right.

flag

68% accept rate

4 Answers

vote up 9 vote down check

You can use Color.FromName()

link|flag
vote up 7 vote down

public static Color FromName(string name)

Color c = Color.FromName("AliceBlue")

link|flag
vote up 6 vote down

System.Drawing.Color.FromName("Red");

link|flag
System.Drawing.Color is a struct, no enum. – Alex Reitbort Feb 23 at 21:53
Was thinking one thing, typing another ;) – DavidN Feb 23 at 21:55
vote up -1 vote down

EDIT: Turns out there's a good reason...Colors aren't an Enum...

Why not use Enum.Parse?

link|flag
System.Drawing.Color is a struct, not enum – Alex Reitbort Feb 23 at 21:55
As the comment on DavidN's answer shows, The named colors are a set of constant structs, not enums. – Steve Mitcham Feb 23 at 21:55
lol. I thought about the Enum thing too. Then realized its not an Enum. – B. Tyndall Feb 23 at 22:07
Woops...I stink. – Jason Punyon Feb 23 at 22:38

Your Answer

Get an OpenID
or

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