Color.
Gets the value of the green RGB channel of the color.
public readonly int G
Public Readonly Property G As Integer
Read only.
'VB code Public Sub Main() Dim myColor As Color(0,255,255,255) Dim greenValue As Integer greenValue = myColor.G() End Sub