double=getCellDoubleFormula(col:integer, row:integer)
The function calculates the formula saved in the cell and it returns the result in the double format.

Parameters
Col and row are coordinates of the cell, whose contents we want to read. Col is a column coordinate and row is a row coordinate. The values range from firstCol and lastCol, or firstRow and lastRow.

Example - Director
global xls
xls.setActiveSheet(1) 
val=xls.getCellDoubleFormula(2, 10)

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
val:=CallObject(xls; "getCellDoubleFormula"; 2; 10)