fgl_report_configureAutoformatOutput

Configure the output when auto-formatting is enabled.

Syntax

fgl_report_configureAutoformatOutput(
   fontName STRING,
   fontSize INTEGER,
   fidelity BOOLEAN,
   reportTitle STRING,
   fieldNamePatterns STRING,
   systemId STRING )
  1. fontName specifies the font to use.
  2. fontSize specifies the font size to use
  3. fidelity specifies whether or not to set the fidelity property for the produced WORDBOX objects. See WORDBOX for more information.
  4. reportTitle - Title of the report.
  5. fieldNamePatterns - A comma separated list of field name patterns; fields not matching any of the patterns are not printed. The patterns may contain literal characters, the? question mark, the * star character, and character ranges, as defined for the Genero BDL MATCHES operator. The columns of the output are sorted in order of the patterns matched and within one pattern by the relative position of the field in the PRINT statement.
  6. systemId specifies an absolute URL against which relative resources such as images in overlays are resolved.

Usage

This function is applicable when no 4rp template has been specified in the call to either fgl_report_loadCurrentSettings or fgl_report_loadAndCommit, and auto-formatting with a value other than COMPATIBILITY has been selected by a call to fgl_report_setAutoformatType.

All arguments to this function are optional (indicated by passing a null value).

See Usage.