A TABLERANGE value specifies the beginning and ending addresses of a particular range—for example, the currently selected cells. The start cell denotes the upper left hand corner and the end cell denotes the lower right hand corner. A cell address is the row and column for that table cell. The address can be either a string giving the names of the row and column, or integers giving the indexes of the cell.
4Test defines this data type as follows:
[-] type TABLERANGE is record [ ] TABLECELL StartCell [ ] TABLECELL EndCell [-] type TABLECELL is record [ ] TABLEROW Row [ ] TABLECOL Col [ ] type TABLEROW is string, integer [ ] type TABLECOL is string, integer
TABLERANGE StrRange = {{"1","id"}, {"2", "ship_date"}} TABLERANGE IntRange = {{1,1}, {2,2}}