void=setCellInteger(col:integer, row:integer, val: integer)
The function saves the content in the integer 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 integer and insert a value, that we save to a cell.

Example - Director
global xls
xls.setActiveSheet(1) 
xls.setCellInteger(2, 10, 27)

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellInteger"; 2; 10; 27)