lezawang
Well-known Member
- Joined
- Mar 27, 2016
- Messages
- 1,805
- Office Version
- 2016
- Platform
- Windows
Hi
What is the maximum value that color can take? I wrote the code below. Can I say the
min value is 0 which is the value of rgb(0,0,0)
and
max value is 16777215 which is the value of rgb(255,255,255)
Can I say that? Thank you very much.
What is the maximum value that color can take? I wrote the code below. Can I say the
min value is 0 which is the value of rgb(0,0,0)
and
max value is 16777215 which is the value of rgb(255,255,255)
Can I say that? Thank you very much.
Code:
Sub myrgb()
MsgBox RGB(0, 0, 0)
MsgBox RGB(255, 255, 255)
End Sub