"cellBackCol"

Defines the background color of an active cell.

Synopsis

setValue(string shape, "cellBackCol", string Color);

getValue(string shape, "cellBackCol", string &Color);

shape.cellBackCol(string Color);

Parameters

Parameter Description
shape Name of the object
Color Color string defining the background color

Description

This attribute is used to access the background color for the currently active cell. The color string "Color" is used as the argument.

Example

Sets the background color of the active cell to "green".

main()
{
  TABLE1.cellBackCol("Green");
}
Abbildung 1. Table with the active Cell Color green

Assignment

Table