void=setCellFontName(col:integer, row:integer, fontName: string)
The function sets font for the chosen cell.

Parameters
Col and row are coordinates of the cell, where we want set font name. 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. FontName is name of font we want to set for the chosen cell.

Example - Director
global xls
xls.setActiveSheet(1) 
xls.setCellFontName(2, 10, "Tahoma")

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellFontName"; 2; 10; "Tahoma")