====== FONT ====== ==== Description ==== Use Font to set the default font for the body of the report. ==== Syntax ==== Font "NAME,STYLE,SIZE,0" ==== Remarks ==== Font uses the following parameters: ^Parameter^Description^ |//Font Name//|The name of the font. (ARIAL, COURIER NEW)| |Font Style|__Option__ - __Description__\\ R - Regular\\ B - Bold\\ I - Italic\\ U - Underline\\ \\ **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 default report font to Arial, Bold Italic, font size 10. Declare Subroutine Run_Report Stmt = 'LIST CUSTOMERS FONT "ARIAL,BI,10,0" CUSTOMER_NAME CITY' Run_Report("",Stmt)