Blue függvény
Returns the blue component of the specified composite color code.
Szintaxis:
Blue (Szín As Long)
Visszatérési érték:
Integer (egész szám)
Paraméter:
Color value: Long integer expression that specifies any composite color code for which to return the blue component.
Példa:
Sub ExampleColor
Dim lVar As Long
lVar = rgb(128,0,200)
MsgBox "A(z)" & lVar & " szín a következőkből áll:" & Chr(13) &_
"vörös= " & Red(lVar) & Chr(13)&_
"zöld = " & Green(lVar) & Chr(13)&_
"kék= " & Blue(lVar) & Chr(13) , 64,"színek"
End Sub