RGB Function [Runtime]/text/sbasic/shared/03010305.xhpSun Microsystems, Inc.converted from old format - fpeRGB Function [Runtime]Returns a long integer color value consisting of red, green, and blue components.Syntax:RGB (Red, Green, Blue)Return value:LongParameter:Red: Any integer expression that represents the red component (0-255) of the composite color.Green: Any integer expression that represents the green component (0-255) of the composite color.Blue: Any integer expression that represents the blue component (0-255) of the composite color.Example:Sub ExampleColorDim lVar As LonglVar = rgb(128,0,200)msgbox "The color " & lVar & " consists of:" & Chr(13) &_"red= " & red(lVar) & Chr(13)&_"green= " & green(lVar) & Chr(13)&_"blue= " & blue(lVar) & Chr(13) , 64,"colors"end sub