Green Function

Returns the Green component of the given composite color code.

Syntaksi:


Green (color1 As Long)

Paluuarvo:

Integer-tyypin kokonaisluku

Parametrit:

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

Virhekoodit:

5 Virheellinen proseduurikutsu

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.


Esimerkki:


Sub ExampleColor
Dim lVar As Long
    lVar = rgb(128,0,200)
    msgbox "VĂ€rin " & lVar & " komponentteina on:" & Chr(13) &_
        "punaista = " & Red(lVar) & Chr(13)&_
        "vihreÀÀ = " & Green(lVar) & Chr(13)&_
        "sinistÀ = " & Blue(lVar) & Chr(13) , 64,"OsavÀrit"
End Sub

Please support us!