Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

OptionDescription
lengthAn integer alone is interpreted as an override for the display length of the column. The justification remains the same as that specified in the dictionary definition for the column.
justAlpha characters alone are interpreted as a justification override. The justification specification must be enclosed in quote marks. The display length remains the same as that specified in the dictionary definition for the column. Possible values for justification override are:
 
ValueDescription
LLeft justification.
RRight justification.
TText (paragraph) justification.
CCenter justification.
justlenThe combination of text and integer is interpreted as an override for both justification and length. The justification and length specification must be enclosed in quote marks.

Examples

 

Code Block
* This displays the COMPANY column with a length of 40
* characters.
 
stmt = "LIST CUSTOMER COMPANY JUSTLEN 40"
Run_Report("",stmt)
 
* Displays the COMPANY column right-justified.
 
stmt = "LIST CUSTOMER COMPANY JustLen "R"
Run_Report("",stmt)
 
* In this example, the COMPANY column is displayed
* left-justified, 40 characters wide.
 
stmt = "LIST CUSTOMER COMPANY JUSTLEN "L40"'
Run_Report("",stmt)