"isColumnVisible";

This function checks whether the active column is visible.

Synopsis

getValue(string shape, "isColumnVisible", bool &on);

shape.isColumnVisible();

Parameters

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

Description

TRUE is returned if the active column is visible, otherwise FALSE.

Example

main()
{
  shape table=getShape("table123");
  DebugN(table.isColumnVisible());
}

Assignment

Table