Action Statement
Change the visibility of column grid lines.
make TABLE_NAME column grid {visible|invisible}
TABLE_NAME
The identifier for a table.
visible | invisible
Make the column grid lines visible (shown) or invisible (hidden).
Description
Use this statement to make the column grid lines visible or invisible.
Example
response to item ColGrid from Menu
copy (column grid of Table is visible) to Flag
action GetFlag
if (InputOK) then
copy "make Table column grid " to MsgStr
if (Flag) then
append "visible" to MsgStr
make Table column grid visible
else append "invisible" to MsgStr
make Table column grid invisible
end if
action SendMsg
end if # InputOK