fillRectangle

The fillRectangle method draws a filled rectangle.

To draw an outline, use the function drawRectangle instead.

Syntax

fillRectangle( rectangle, color )

Arguments

Argument Description
rectangle The location of the rectangle in the input records.
color The fill color. See the function rgb or rgba.

Returns

Nothing.

Example

The following example draws a solid green rectangle:

fillRectangle(record.RectangleData, rgb(0, 255, 0))

The following example draws a partially transparent yellow rectangle:

fillRectangle(record.RectangleData, rgba(255, 255, 0, 127))