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.
ParametersRef is a coordinate of the cell in format ColRow. Type of parametr is string, for example A1, C8, D22 etc.
NoteThe 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 - AuthorwareCallObject(xls; "setActiveSheet" ; 1)
val:=CallObject(xls; "getCellRtfRef"; "B7")