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