Guida di LibreOffice 7.4
Restituisce il componente blu del codice di colore composito specificato.
Blue (Color As Long)
Integer
Valore del colore: numero intero lungo che specifica un codice di colore composito per il quale deve essere restituito il componente blu.
Under VBA compatibility mode (Option VBASupport 1), the function Blue() is incompatible with VBA colors, when color from previous call to function RGB [VBA] is passed.
Sub ExampleColor
Dim lVar As Long
lVar = rgb(128,0,200)
MsgBox "Il colore " & lVar & " è formato da:" & Chr(13) &_
"rosso= " & Red(lVar) & Chr(13)&_
"verde= " & Green(lVar) & Chr(13)&_
"blu= " & Blue(lVar) & Chr(13) , 64,"colori"
End Sub