Object Inquiry Built-in Function
Return whether a row or column is selected.
({row ROW_ID|column COL_ID} of TABLE_NAME is selected)
ROW_ID
The identifier for a row.
COL_ID
The identifier for a column.
TABLE_NAME
The identifier for a table.
Description
This built-in function returns true if a row/column is selected. You cannot use this built-in function during compile-time or when the parent of the table is temporary and invisible. Otherwise an error is printed to the errorlog and an empty value (0/false/"") is returned.
Example
if (InputOK_BV) then
copy "(row " Y_IV " of Table is selected) = "
(row Y_IV of Table_TBL is selected) to MsgStr_SV
action SendMsg
end if # InputOK