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
Post a Comment