BBjColor::getGreen

Description

Returns the green value of a BBjColor object.

Syntax

Return Value Method
int getGreen()

Parameters

None.

Return Value

Returns the green value of a BBjColor object.

Remarks

The value can be in the range 0-255.

Example

rem 'Get the green value from an instance of a BBjColor object

rem 'Obtain the instance of the BBjAPI object
let myAPI! = BBjAPI()

rem 'Open the SysGui device
SYSGUI = UNT
OPEN (SYSGUI) "X0"

rem 'Obtain the instance of the BBjSysGui object
let mySysGui! = myAPI!.getSysGui()

rem 'Create the BBjColor Object using RGB values
myColorRGB! = mySysGui!.makeColor(215,255,100)

rem 'Get the green value from the BBjColor object, this will return 255
GREEN_VALUE = myColorRGB!.getGreen()

See Also

BBjAPI

BBjSysGui

Object Variables

See the BBj Object Diagram for an illustration of the relationship between BBj Objects.