Green Function
Returns the Green component of the given composite color code.
Синтаксис
Green (Цвет 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 "Этот цвет " & lVar & " содержит компоненты:" & Chr(13) &_
"красного= " & red(lVar) & Chr(13)&_
"зелёного= " & green(lVar) & Chr(13)&_
"синего= " & Blue(lVar) & Chr(13) , 64,"цветов"
End Sub