TableColumnWidths
New in version 5.0
TableColumnWidths ( width1 ; width2 ; . . . ; width1000 )
Argument | Type | Range | Default | Note |
---|---|---|---|---|
width1 | num | 0..1000 | (autom.) | 0...automatic |
width2 | num | 0..1000 | (autom.) | 0...automatic |
... | num | 0..1000 | (autom.) | 0...automatic |
width1000 | num | 0..1000 | (autom.) | 0...automatic |
Examples
TableColumnWidths(100) /* All columns 100 px wide. */
TableColumnWidths(0;100;80) /* 0...automatic. */
Description
| TABLE_COLUMN_WIDTHS_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 | TableRowAlternateBackgrounds(#eef;white) /* Color of row1 row2 ... */ |
8 | |
9 |