"rowHeaderWidth"

Sets the width of row headers.

Synopsis

setValue(string shape, "rowHeaderWidth", int width);

getValue(string shape, "rowHeaderWidth", int &width);

shape.rowHeaderWidth(intwidth);

Parameters

Parameter Description
shape Name of the object
width Width of the header

Description

Sets the width of row headers

Example

In the following example, the width of the row header will be set to 90.

main()
{
  TABLE1.rowHeaderWidth(90);
}

Assignment

Table