propertyList=getCellDateTime(col:integer, row:integer)
The function loads the contents of the cell in xls document, whose format is DateTime, and it returns it 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, 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.getCellDateTime(2, 10)

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