"rowHeaderVisibility"

Shows or hides the row headers.

Synopsis

setValue(string shape, "rowHeaderVisibility", bool mode);

getValue(string shape, "rowHeaderVisibility", bool mode);

shape.rowHeaderVisibility(bool mode);

Parameters

Parameter Description
shape Name of the object
mode

TRUE = Show the row headers

FALSE = Do not show the row headers

Description

Shows or hides the row headers.

Example

The following example hides the row headers.

main()
{
  TABLE1.rowHeaderVisibility(FALSE);
}

Assignment

Table