RGB Function

Returns a long integer color value consisting of red, green, and blue components.

தொடரமைப்பு:

RGB (Red, Green, Blue)

Return value:

Long

அளவுருக்கள்:

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.

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:

Sub ExampleColor

Dim lVar As Long

    lVar = 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