| FAQ #2525, published on 2002-10-15 |
|
| How do you change the font in a table by programming? |
There are several possibilities:
- To change the font of an entire line: TABLE[index]..Font = MyFont. - To change the font of an entire column: TABLE.COLUMN..Font = MyFont. - To change the font in one particular table field: TABLE.COLUMN[Index]..Font = MyFont. - To change the font of the entire table: For i = 1 to TableCount(TABLE) _TABLE[i]..Font = MyFont END |
|
|
|
|
|