TableRowAlternateBackgrounds
New in version 5.0
TableRowAlternateBackgrounds ( color1 ; color2 ; . . . ; color1000 )
| Argument | Type | Range | Default | Note |
|---|---|---|---|---|
| color1 | rgba | 0..255 | none | |
| color2 | rgba | 0..255 | none | |
| ... | rgba | 0..255 | none | |
| color1000 | rgba | 0..255 | none |
Examples
TableRowAlternateBackgrounds(#eef;white) /* Color of row1 row2 ... */
TableRowAlternateBackgrounds(darkBlue;#fff;#fff;#fff;#fff)
Description
| | TABLE_ROW_ALTERNATE_BACKGROUNDS_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 |
See also TableColumnAlternateBackgrounds() .