void=setCellBoolean(col:integer, row:integer, val: boolean)
                
                
                The function saves the content in the boolean format to a cell in xls document.
                
ParametersCol 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 boolean and insert a value, that we save to a cell.
              
                
                
                
                
Example - Director
                global xls
xls.setActiveSheet(1) 
xls.setCellBoolean(2, 10, false)
                
                Example - AuthorwareCallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellBoolean"; 2; 10; false)