string=getCellRtfRef(ref: string)
The function returns the cell contents in Rtf format. This function is identical with the function getCellRtf, the only difference is that we enter one string parameter Ref instead of Col and Row parameters.

Parameters
Ref is a coordinate of the cell in format ColRow. Type of parametr is string, for example A1, C8, D22 etc.

Note
The output of the function can directly be saved into castMember, for example member("abc").rtf=getCellRtfRef("B2").

Example - Director
global xls
xls.setActiveSheet(1) 
put xls.getCellRtfRef("B7")

Example - Authorware
CallObject(xls; "setActiveSheet" ; 1) 
val:=CallObject(xls; "getCellRtfRef"; "B7")