SSpread.ForeColor Property
Sets the text color for the entire spreadsheet, rows, columns, cells, and cell blocks.
Before setting this property, use the Col, Row properties, and so on to specify what to do.
Specify a color constant or #RRGGBB format. The initial value is $ BLACK.
Use the SetOddEvenRowColor method to set a different color for each row (set a different color for even and odd rows).
The color of the text in the locked cell takes precedence over the setting of the LockForeColor property.
Example of usage
Col = 2;
Row = 3;
ForeColor = $DRED;
BlockMode = $TRUE;
Col = 3;
Row = 3;
Col2 = 5;
Row2 = 5;
ForeColor = "#A93224";
BlockMode = $FALSE;
Related Items
BackColor, LockForeColor property
SetOddEvenRowColor method