"rowHeight"

Sets the height for a table row.

Synopsis

setValue(string shape, "rowHeight", int height);

getValue(string shape, "rowHeight", int &height);

shape.rowHeight(intheight);

Parameters

Parameter Description
shape Name of the object
height Height of a row

Description

Sets the height of a table row.

Example

In the following example, the height of the table rows will be set to 35.

main()
{
  TABLE1.rowHeight(35);
}

Assignment

Table