void=setCellDouble(col:integer, row:integer, val: double)
The function saves the content in the double format to a cell in xls document.

Parameters
Col and row are coordinates of the cell, that we want to save the string value to. 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. Type of val is double and insert a value, that we save to a cell.

Example - Director
global xls
xls.setActiveSheet(1) 
xls.setCellDouble(2, 10, 27.102)

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellDouble"; 2; 10; 27.102)