RGB_R
Returns the red component (as an Integer) from a given RGBA colour value.
Syntax: RGB_R( RGBA )
The return value is the red component in the range 0–255.
Example
This example extracts the red component from a colour built with RGB.
Dim MyColor As Long
Dim RedComponent As Integer
MyColor = RGB(255, 100, 150)
RedComponent = RGB_R(MyColor) ' Returns 255.