Object Inquiry Built-in Function
Return whether a table allows column resizing.
(TABLE_NAME is resizeable)
TABLE_NAME
The identifier for a table.
Description
This built-in function returns true only if the table allows column resizing by the user. You must enclose the entire statement in parentheses.
Example
response to item Resizeable_MC from Menu_AB
copy (Table_TBL is resizeable) to Flag_BV
action GetFlag
if (InputOK_BV) then
copy "make Table resizeable " Flag_BV to MsgStr_SV
action SendMsg
if (Flag_BV) then
make Table_TBL resizeable
else
make Table_TBL not resizeable
end if
end if # InputOK