Hilfe für LibreOffice 7.1
Returns the Green component of the given composite color code.
Green (Farbe As Long)
Integer
Color: Long integer expression that specifies a composite color code for which to return the Green component.
Sub ExampleColor
Dim lVar As Long
lVar = rgb(128,0,200)
MsgBox "Die Farbe " & lVar & " hat die Anteile:" & Chr(13) &_
"rot = " & red(lVar) & Chr(13)&_
"grün = " & green(lVar) & Chr(13)&_
"blau = " & blue(lVar) & Chr(13) , 64,"colors"
End Sub