TACL Reference Manual

Built-In Functions and Variables
HP NonStop TACL Reference Manual429513-018
9-280
#OUTPUTV Built-In Function
#OUTPUTV Built-In Function
Use #OUTPUTV to write the contents of a string to the OUT file of TACL (typically, the
terminal).
option
qualifies the write operation. It can be any of the following unless string is a
variable level of type STRUCT, in which case no options are allowed.
COLUMN num
begins writing data at column num. If there is already text in the buffer
extending beyond the specified column, the buffer contents are output and a
new line is started, beginning at that column.
FILL { SPACE | ZERO }
specifies the character to be used to fill the unused character positions to the
right if the output is narrower than the number of columns specified by WIDTH.
If the output is wider than the number of columns specified by WIDTH, FILL is
ignored.
HOLD
holds output in a buffer until one of these events occurs:
#OUTPUT or #OUTPUTV is executed without the HOLD option.
The buffer becomes full.
TACL, #DELTA, #INPUT, or #INPUTV prompts for input.
#DELTA exits.
JUSTIFY { LEFT | RIGHT | CENTER }
specifies whether the output should be left-justified, right-justified, or centered if
the output is narrower than the number of columns specified by WIDTH. If the
output is wider than the number of columns specified by WIDTH, JUSTIFY is
ignored.
WIDTH num
specifies the width of the output field for the FILL and JUSTIFY options. If the
output is wider than the number of columns specified by WIDTH, WIDTH is
ignored. Specify num as an integer in the range from 1 to the current value of
the #WIDTH built-in variable.
#OUTPUTV [ / option [ , option ] ... / ] string