TableRowGap

New in version 5.0

TableRowGap ( rowIndices ;​ gap )

Argument Type Range Default Note
rowIndices int[] -1000..1000 0 0...all
gap num -1000..1000 0
Examples

TableRowGap(1;​3.5)

TableRowGap(1 2 3 10;​20.5)

Description
TABLE_ROW_GAP_01
1

OpenDrawing(300;​160)

2

OpenTable(0;​0;​left;​top)

3

TableTexts("";​"A\tB\tC\r10\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(60;​90;​80)

7

/* Set up column headers. */

8

/* [fromRow fromColumn toRow toColumn] -1...last row or last column */

9

TableCellStyle(1 1 1 -1;​Arial;​15;​plain;​white)

10

TableCellBackground(1 1 1 -1;​#88f)

11

TableCellBorderRect(1 1 1 -1;​1)

12

TableRowGap(1;​3) /* 3px gap between row 1 and row 2. */

13

/* Set up table. */

14

TableCellBorderRect(2 1 -1 -1;​1)

15

CloseTable()

16

CloseDrawing()

TABLE_ROW_GAP_01

See also TableColumnGap() .

Scroll to Top