winforms - how to get RGB numerical equivalent of color in vb.net -


net there many standard colors available . how know there numerical value. want numerical values changing can obtain required shades not available standard colors.

e.g black know numerical rgb equivalent 0, 0, 0 rgb values olive color?

how color name numeric rgb value conversion

since of colors of color object, need instantiate color , call color methods want to.

you want this:

console.write(color.olive.r & " " & color.olive.g & " " & color.olive.b) 

Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -