"selectColors"

Defines the color for the selected cells.

Synopsis

setValue(string shape, "selectColors", string backColor, string foreColor);

shape.selectColors(string backColor, string foreColor);

Parameters

Parameter Description
shape Name of the object
backColor Background color
foreColor Font color

Description

Sets the front and background color for the selected table range (for example by "selectByClick").

Example

In the following example, the selection will be colored red on green.

main()
{
  TABLE1.selectColors("green", "red");
}

Assignment

Table