BBjColor::getBlue

Description

Returns the blue value of a BBjColor object.

Syntax

Return Value Method
int getBlue()

Parameters

None.

Return Value

Returns the blue value of the BBjColor object.

Remarks

The value can be in the range 0-255.

Example

rem 'Get the blue 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 blue value from the BBjColor object, this will return 100
BLUE_VALUE = myColorRGB!.getBlue()

See Also

BBjAPI

BBjSysGui

Object Variables

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