RGB_B
Returns the blue component (as an Integer) from a given RGBA colour value.
Syntax: RGB_B( RGBA )
The return value is the blue component in the range 0–255.
Example
This example extracts the blue component from a colour built with RGB.
Dim MyColor As Long
Dim BlueComponent As Integer
MyColor = RGB(210, 45, 200)
BlueComponent = RGB_B(MyColor) ' Returns 200.