IGxColor.G

Syntax

G: Integer;

Description

The G property returns the green component of the color from 0 to 255.

Example

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    i: Integer;
Begin
    i:=Panel1.Color.G;
End Sub Button1OnClick;

After executing the example on clicking the button the "i" variable contains the green color component of the panel named Panel1.

See also:

IGxColor