LibreOffice 7.1 Súgó
Returns the blue component of the specified composite color code.
Blue (Szín As Long)
Integer (egész szám)
Color value: Long integer expression that specifies any composite color code for which to return the blue component.
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