Description
Use Colfont to set the font for a specific column in a report
Syntax
COLUMN COLFONT "NAME,STYLE,SIZE,0"
Remarks
COLFONT uses the following parameters:
Parameter | Description | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Font Name | The name of the font. (ARIAL, COURIER NEW) | ||||||||||
Font Style |
Note: Styles can be combined such as Regular Underline (RU), Bold Italic (BI). | ||||||||||
Font Size | Size of the font | ||||||||||
Reserved | Pass “0” |
Example
* Set the column font to Arial, Bold Italic, font size 10 for the * CUSTOMER_NAME column. Declare Subroutine Run_Report Stmt = 'LIST CUSTOMERS CUSTOMER_NAME COLFONT "ARIAL,BI,10,0" CITY' Run_Report("",Stmt)