"cellForeCol"

Defines the text color for the active cell.

Synopsis

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

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

shape.cellForeCol(string Color);

Parameters

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

Description

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

Example

Sets the foreground color for the active cell to "red".

main()
{
  TABLE1.cellForeCol("Blue");
}
Figure 1. Table and active Cell Color "Blue"

Assignment

Table