list=ref2ColRow(ref: string)
The function transforms Ref format defined cell to Col and Row format. Returned value is in Abstract Data Types format. For example: [#Col:10,#Row:18]

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
put xls.ref2ColRow("A22")
put xls.ref2ColRow("B22").col
put xls.ref2ColRow("B22").row

Example - Authorware
val:=CallObject(xls; "ref2ColRow" ; "A22")