"namedColumnVisibility";

Shows or hides a specific column.

Synopsis

setValue(string shape, "namedColumnVisibility", string Name, bool vis);

getValue(string shape, "namedColumnVisibility", string Name, bool &vis);

shape.namedColumnVisibility(string Name, bool vis);

Parameters

Parameter Description
shape Name of the object
Name Name of column
vis Visible or invisible (TRUE/FALSE)

Description

If vis==TRUE, the column with the specified name will be displayed, otherwise it will be switched to "invisible";.

Example

The following example hides the column called "First name".

main()
{
  TABLE1.namedColumnVisibility("First name", FALSE);
}

Assignment

Table