|
FAQ FOR WINDEV, WEBDEV AND WINDEV MOBILE |
|
| |
|
| | |
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 |
| |
| | | | | | Informations contained on this site are the exclusive property of PC SOFT. These informations and logos CANNOT be copied and/or used without a written authorization from PC SOFT. © PC SOFT 2004-2024.
|
| |
| |
| |
| |
| |
| |
|
|
|