"columnVisibility"
    
    Shows or hides a column.
Synopsis
setValue(string shape, "columnVisibility", int i, bool
                on);
getValue(string shape, "columnVisibility", int i, bool
                &on);
shape.columnVisibility(int i, bool on);
Parameters
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| i | Column index, starting with 0 | 
| on | Show or hide (TRUE/FALSE) | 
Description
If on==TRUE, the column "i" will be displayed.
            
                Example
            
Sets column three to "hidden".
main()
{
  shape table=getShape("table123");
  table.columnVisibility(2, FALSE);
}
        Assignment
Table
