setReportFont
Override the font used for report generation for the current application.
Syntax
ui.Interface.frontCall("standard", "setReportFont",
[font], [result])
- font - A string describing the font to use for report generation.
- result - The execution status (
TRUE
=success,FALSE
=error).
Usage
The "setReportFont
" front call allows you to override the default font used for
report generation for the current application. You can simply copy/paste the font string from the
"Report To Printer" font panel from GDC Monitor. An empty or null string resets it to the default
behavior.
The font parameter is a string that describe the font to use for report
generation. For example: "Helvetica, Bold, Italic, 13"
.
Alternatively, you can specify "<ASK_ONCE>"
,
"<ASK_ALWAYS>"
, "<USER_DEFINED>"
or
"<USE_DEFAULT>"
" which will perform the corresponding actions.
Example
DEFINE result BOOLEAN
CALL ui.interface.frontCall("standard","setReportFont",
["Helvetica, Bold, Italic, 13"],
[result])