Please enable JavaScript to view this site.

ESL Documentation

Action Statement

Make a column (not) resizeable.

make column COL_ID of TABLE_NAME [not] resizeable

COL_ID

The identifier for the column you want to make resizeable or not.

TABLE_NAME

The identifier for a table.

Description

Use this statement to make the specified column resizeable by the user or not.

This statement will be ignored if the table is not resizeable or if the parent of the table is temporary and invisible when you issue this statement.

Example

 

response to item ColResizeable from Menu

 copy true to Flag

 action GetColFlag

 if (InputOK) then

         copy "make column " X " of Table " to MsgStr

         if (Flag) then

                 append "resizeable" to MsgStr

                 make column X of Table resizeable

         else append "not resizeable" to MsgStr

                 make column X of Table not resizeable

         end if

         action SendMsg

 end if # InputOK

See Also

make resizeable Action Statement