Please enable JavaScript to view this site.

ESL Documentation

Navigation: ESL Documentation > ESL Programmers Reference > Verbs

make column grid invisible and make column grid visible

Scroll Prev Top Next More

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