"columnHeaderVisibility"

The table header is shown or hidden.

Synopsis

setValue(string shape, "columnHeaderVisibility", bool on);

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

shape.columnHeaderVisibility();

Parameter

Parameter Description
shape Name of the object
on Show or hide (TRUE/FALSE)

Description

This function can be used to show and hide the table header.

Example

This example hides the table header.

main()
{
  shape table=getShape("table123");
  table.columnHeaderVisibility()=FALSE;
}

Assignment

Table