TableRowHeights
New in version 5.0
TableRowHeights ( height1 ; height2 ; . . . ; height1000 )
| Argument | Type | Range | Default | Note |
|---|---|---|---|---|
| height1 | num | 0..1000 | (autom.) | 0...automatic |
| height2 | num | 0..1000 | (autom.) | 0...automatic |
| ... | num | 0..1000 | (autom.) | 0...automatic |
| height1000 | num | 0..1000 | (autom.) | 0...automatic |
Examples
TableRowHeights(20)
TableRowHeights(20;15;15;15)
Description
| | TABLE_ROW_HEIGHTS_01 |
| 1 | OpenDrawing(300;130) |
| 2 | |
| 3 | TableTexts("";"10\t1,234.21\t712\n25\t93.42\t3949\n268\t234.20\t6854\n185\t-1,692.21\t•••\n124\t198.50\t1000") |
| 4 | TableCellStyle(0;Verdana;15;plain;black) /* 0..all cells. */ |
| 5 | TableColumnAlignments(right;right;right) |
| 6 | TableColumnWidths(0;100;80) /* 1st column: 0...automatic column width. */ |
| 7 | TableRowHeights(0;0;0;0;20) /* row1..row4: 0...automatic row height. */ |
| 8 | TableCellStyle(-1 1 -1 -1;Verdana;15;bold;darkBlue;;bottom) |
| 9 | |
| 10 |