drawFillColor

Type: Integer

Availability: Read or write at run time only

The drawFillColor property of the Window class contains the color used to fill in shapes drawn with the graphics methods.

JADE uses the RGB scheme for colors. Each property can be set, by using the appropriate RGB value.

The valid range for a normal RGB color is 0 through 16,777,215 (#FFFFFF). The high byte of a number in this range equals zero (0); the lower three bytes, from least to most significant byte, determine the amount of red, green, and blue, respectively.

The red, green, and blue components are each represented by a number in the range 0 through 255 (#FF). If the high byte is not zero (0), JADE uses the system colors, defined in the Control Panel of the user.

By default, the drawFillColor property is set to 0 (black).

When the drawFillStyle property is set to its default value of DrawFillStyle_Transparent (1), the setting of the drawFillColor property is ignored.

The code fragment in the following example shows the use of the drawFillColor property.

table.drawFillColor := Green;