BLUE function

BLUE(Color) BLUE(Color)

Color

Color or { Color }

The color.

Returns

Number or { Number }

The blue color component from the given color, ranging from 0 to 255 (inclusive).

Returns the blue color component from the given color according to the Red-Green-Blue (RGB) and Red-Green-Blue-Alpha (RGBA) color models.

This function is Calcapp-specific.

Examples

BLUE(Color.Blue)BLUE(Color,Blue)

Returns 255, which is the blue color component of the default blue color.

BLUE({ Color.Blue, Color.Red })BLUE({ Color,Blue; Color,Red })

Returns the array { 255, 0 }{ 255; 0 }, indicating that the default blue color has a blue color component value of 255 and that the default red color has a blue color component value of 0.