TableRowAlignments
TableRowAlignments ( alignment1 ; alignment2 ; . . . ; alignment1000 )
Argument | Type | Range | Default | Note |
---|---|---|---|---|
alignment1 | int | 1..3 | center | vertical alignment |
alignment2 | int | 1..3 | center | vertical alignment |
... | int | 1..3 | center | |
alignment1000 | int | 1..3 | center | vertical alignment |
Examples
TableRowAlignments(top;top)
TableRowAlignments(center;center;center;bottom)
Description
| TABLE_ROW_ALIGNMENTS_01 |
1 | OpenDrawing(300;150) |
2 | |
3 | TableTexts("";"10\t1,234.21\t712\n25\t93.42\t3949\n268\t234.20\t6854\n185\t-1,692.21\tText in¶two rows\n124\t198.50\t1000") |
4 | TableCellStyle(0;Verdana;15;plain;black) /* 0..all cells. */ |
5 | TableRowAlignments(;;;bottom) /* 4th row is bottom-aligned. */ |
6 | TableColumnAlignments(center;right;right) /* 1st column is centered. */ |
7 | TableColumnWidths(0;100;80) /* 1st column: 0...automatic column width. */ |
8 | |
9 |