void=getCellAnsiString(col:integer, row:integer, codePage: integer)
The function loads the contents of the cell in the xls file, whose format is UNICODE. It is returned as a value of the ANSI string type.

Parameters
Col and row are coordinates of the cell, whose contents we want to read. The parameter codePage represents the code page to be used to convert the UNICODE from. In the UNICODE text, only signs included in the appropriate page code can be used. If any other signs are used, they will replaced by question marks.

CodePage - Language
874 - Thai
932 - Japan
936 - Chinese (PRC, Singapore)
949 - Korean
950 - Chinese (Taiwan, Hong Kong)
1200 - Unicode (BMP of ISO 10646)
1250 - Eastern European
1251 - Cyrillic
1252 - Latin 1 (US, Western Europe)
1253 - Greek
1254 - Turkish
1255 - Hebrew
1256 - Arabic
1257 - Baltic

Example - Director
global xls
xls.setActiveSheet(1) 
val=xls.getCellAnsiString(2, 10, 1251)

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