string=getCellRtf(col:integer, row:integer)
The function returns the cell contents in Rtf format.
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.
NoteThe output of the function can directly be saved into castMember, for example member("abc").rtf=getCellRtf(2, 7).
Example - Director
global xls
xls.setActiveSheet(1)
put xls.getCellRtf(2, 10)
Example - AuthorwareCallObject(xls; "setActiveSheet" ; 1)
val:=CallObject(xls; "getCellRtf"; 2; 10)