string=getCellHtml(ref: string)
The function returns the cell contents in Html format. This function is identical with the function getCellHtml, 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.

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

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