string=getCellUTF8String(col:integer, row:integer)
The functions loads the contents of the cell in the xls file, whose format is UNICODE. It is returned as a value of the UTF-8 string type.
ParametersCol 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.getCellUTF8String(2, 10)
Example - AuthorwareCallObject(xls; "setActiveSheet" ; 1)
val:=CallObject(xls; "getCellUTF8String"; 2; 10)