Reporting : Native reporting system : Reporting system command language : SIZE subcommand
  
SIZE subcommand
Description
The SIZE subcommand is used in a SELECT command to specify the width and line spacing of a field.
The structure of the statement is:
SIZE X,Y
Example
SELECT Name SIZE 3,0.5, Type SIZE 2, 0.5
Creates two columns in the report. The first column, Name, has a width of 3 inches. The second column, Type, has a width of 2 inches. The row height is 0.5 inches for both columns.
Notes
1 SIZE and WIDTH (see WIDTH subcommand) are mutually exclusive. The column width specified by the WIDTH command overrides what is specified by the SIZE command.
2 SIZE and POS (see POS subcommand) are mutually exclusive. Data is always placed where specified by the POS command, regardless of the field size specified by the SIZE command.
3 The SIZE subcommand can only be placed in a report in text mode. For more information, see Edit <report name> – Text Mode dialog. This function is not supported by the Report Editor.
Parent topic
Reporting system command language