RGB

The RGB function returns a number that represents an RGB color value.

Syntax :

RGB(red,green,blue)
Parameters Description
red Required. A number from 0 to 255, inclusive, representing the red component of the color.
green Required. A number from 0 to 255, inclusive, representing the green component of the color.
blue Required. A number from 0 to 255, inclusive, representing the blue component of the color.

Examples :

Example 1

dRGB = RGB(255,0,0)
DEBUG(dRGB)

Result :

dRGB
= 255

Example 2

dRGB = RGB(255,30,30)
DEBUG(dRGB)

Result :

drgb
= 1974015