void=setCellFontColor(col:integer, row:integer, fontColor: string)
The function sets colour of the text for the chosen cell.

Parameters
Col and row are coordinates of the cell, where we want set text colour. Col is a coordinate of column and row is a coordinate of row. The values range from firstCol to lastCol, respectively from firstRow to lastRow. FontColor is defined in hexadecimal shape #RRGGBB. Example: #F0FF00.

Example - Director
global xls
xls.setActiveSheet(1) 
xls.setCellFontColor(2, 10, "#FF0000")

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellFontColor"; 2; 10; "#FF0000")