You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Description

Use COLHDRFONT to set the font for the entire header row.

Syntax

COLUMN COLHDRFONT "NAME,STYLE,SIZE,0"

Remarks

COLHDRFONT uses the following parameters:

ParameterDescription
Font NameThe name of the font. (ARIAL, COURIER NEW)
Font Style
OptionDescription
RRegular
BBold
IItalic
UUnderline

Note: Styles can be combined such as Regular Underline (RU), Bold Italic (BI).

Font SizeSize of the font
ReservedPass “0”

Example

 

*Set the column header font to Arial, Bold Italic, font size 10.
 
Declare Subroutine Run_Report
Stmt = 'LIST CUSTOMERS CUSTOMER_NAME CITY COLHDRFONT "ARIAL,BI,10,0"'
 
Run_Report("",Stmt)
  • No labels