RGB Function
Returns a Long integer color value consisting of red, green, and blue components.
構文:
RGB (Red, Green, Blue)
戻り値:
ロング整数
パラメーター:
Red:コンポジットカラーの、赤 (Red) コンポーネントを指定する整数表式 (0-255)。
Green:コンポジットカラーの、緑 (Green) コンポーネントを指定する整数表式 (0-255)。
Blue:コンポジットカラーの、青 (Blue) コンポーネントを指定する整数表式 (0-255)。
The color picker dialog helps computing red, green and blue components of a composite color. Changing the color of text and selecting Custom color displays the color picker dialog.
例:
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