llaRangeValues = table.GetRangeValue (Range[, ValueType])
| Variable | Description |
|---|---|
| llaRangeValues | The returned cell values. Each sublist in llaRangeValues is a list of the cell values for that row. LIST OF LIST OF ANYTYPE. |
| Range | The range for which to get the value. TABLERANGE. |
| ValueType |
Optional: The type of value to return; one of the following values of TABLEVALUETYPE: |
LIST OF LIST OF ANYTYPE llVals
LIST OF ANYTYPE lRow
ANYTYPE aValue
TABLERANGE TableRange
WINDOW wAdd = DialogBox("Add-Only Table").Table("#1")
TableRange = wAdd.GetSelRange(TRUE)
llVals = wAdd.GetRangeValue(TableRange, TVT_TYPED)
for each lRow in llVals
for each aValue in lRow
Print(TypeOf(aValue))
// Results
// INTEGER
// INTEGER
// INTEGER
// INTEGER
// DATE