rowHeight

Specifies the table row heights as an array, with row number as the array index. The following rules apply:

A positive integer value specifies a fixed row height in pixels.

A value of -1 specifies automatic row height calculation (default).

A negative integer value (other than -1) specifies a fixed minimum row height in pixels. In this case, the row height is calculated automatically but constrained to be no smaller than the specified value.

A value of 0 specifies that the row should be hidden (i.e., zero height).

Type

array of integers

Examples

rowHeight[1] = -50; // minimum height of 50 for row 1

rowHeight[2] = -1;  // auto-height for row 2

rowHeight[3] = 0;   // hide row 3

rowHeight[4] = 99;  // fixed height of 99 for row 4

<< rowLineWrap © 1996-2013 InetSoft Technology Corporation (v11.4) format >>