Collabora Office 24.04:n ohje
Returns the Green component of the given composite color code.
Green (color1 As Long)
Integer-tyypin kokonaisluku
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 "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