Green-funksjonen

Returnerer den grøne komponenten i den gjevne fargekoden.

Syntaks:


Green (Color As Long)

Returverdi:

Heiltal

Parameter:

Color: Long integer expression that specifies a composite color code for which to return the Green component.

Feilkodar

5 Ugyldig prosedyreoppkall

tip

The color picker dialog details the red, green and blue components of a composite color code, as well as its hexadecimal expression. Changing the color of text and selecting Custom color displays the color picker dialog.


Eksempel:


Sub ExampleColor
Dim lVar As Long
    lVar = rgb(128,0,200)
    Msgbox "Fargen " & lVar & " er sett saman av:" & Chr(13) &_
        "raud= " & Red(lVar) & Chr(13)&_
        "grøn= " & Green(lVar) & Chr(13)&_
        "blå= " & Blue(lVar) & Chr(13), 64, "fargar"
End Sub