void=setCellDateTime(col:integer, row:integer, val:propertyList)
The function saves DateTime value to a cell of xls document.The DateTime value is in Abstract Data Type format, for example [#year:2002, #month:2, #day:2, #hour:8, #minute:27, #second:42].

Parameters
Col and row are coordinates of the cell, that we want to save the DateTime 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 propertyList and we insert it in the Abstract Data Type format.

Example - Director
global xls
xls.setActiveSheet(1)
val=[#year:2002, #month:2, #day:2, #hour:8, #minute:27, #second:42] 
xls.setCellDateTime(2, 10, val)

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
CallObject(xls; "setCellDateTime"; 2; 10; val)