RGB (Function)
Returns a whole number representing an RGB color value
Parameters
red
|
Required.
Number in the range 0-255 representing the red component of the color.
|
green
|
Required.
Number in the range 0-255 representing the green component of the color.
|
blue
|
Required.
Number in the range 0-255 representing the blue component of the color.
|
Return Value
Returns an Integer value representing an RGB color value from a set of red, green and blue color components.
Description
Application methods and properties that accept a color specification expect that specification to be a number representing an RGB color value. An RGB color value specifies the relative intensity of red, green, and blue to cause a specific color to be displayed.
The low-order byte contains the value for red, the middle byte contains the value for green, and the high-order byte contains the value for blue.
Notes
The value for any argument to RGB that exceeds 255 is assumed to be 255.