Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved


Chapter 3 Tools : $BLANKPAGE

$BLANKPAGE
Outputs a blank page. (C)
Invocation
CALL $BLANKPAGE(titles_yn)
 
Its syntax is C (fixed-length character string), with length 1.
Prerequisites

Exceptions
 
titles_yn is neither Y nor N (or '' (NULL), which is treated as N.)
This exception is raised if the left, center, or right titles overlap or if the combined length of the character strings exceeds the width (where width is the page width set by $RESETPRINT or $SETPRINT) or 132, whichever is less.
Example
The following rule prints three blank pages to the message log:

 
BLANKPAGE_1;
_
_ ---------------------------------------------------------------------------
_ ------------------------------------------------------------+--------------
_ CALL $SETPRINT(10, 70, 1, 'SCR', 'N'); | 1
_ CALL $BLANKPAGE('Y'); | 2
_ CALL $BLANKPAGE('N'); | 3
_ CALL $BLANKPAGE('Y'); | 4
_ ---------------------------------------------------------------------------

 
Pressing PF2 after executing this rule displays the following screen:

 
------------------------ INFORMATIONAL MESSAGE LOG ------------------
COMMAND ===> SCROLL ===> P
----------------------------- NEW PAGE ------------------------------
Page 1
----------------------------- NEW PAGE ------------------------------
----------------------------- NEW PAGE ------------------------------
Page 3

 
The first and third pages are printed with titles, the second page without titles.

Copyright © TIBCO Software Inc. All Rights Reserved
Copyright © TIBCO Software Inc. All Rights Reserved