LibreOffice 7.1:n ohje
Returns a Long integer color value consisting of red, green, and blue components.
RGB (red1, green1, blue1)
Long
Red1: mikä tahansa kokonaislukulauseke, joka edustaa komposiittivärin punaista komponenttia (0-255).
Green1: mikä tahansa kokonaislukulauseke, joka edustaa komposiittivärin vihreää komponenttia (0-255).
Blue1: mikä tahansa kokonaislukulauseke, joka edustaa komposiittivärin sinistä komponenttia (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 "Värin " & lVar & " koostumus:" & Chr(13) &_
"punaista = " & Red(lVar) & Chr(13)&_
"vihreää = " & Green(lVar) & Chr(13)&_
"sinistä = " & Blue(lVar) & Chr(13) , 64,"Osavärit"
End Sub