Funktion Green
Returns the Green component of the given composite color code.
Syntax:
Green (Farbe As Long)
Rückgabewert:
Integer
Parameter:
Color: Long integer expression that specifies a composite color code for which to return the Green component.
Beispiel:
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