Printing a number of numeric spaces¶
nsp() |
Print a number of numeric spaces |
SYNTAX
nsp(integer)
Print the specified number of spaces, each space being the width of the “0” character in the font being used. This function should be used where a fixed gap is required between print items.
The integer may be any expression which evaluates to an integer value.
If a proportional font is being used, a space generated by this function is larger than a space generated by printing ” ” . The latter can be used for fine adjustments. See asp().
This function is meaningless outside a print[h] command.
EXAMPLE
print Inc.MonTot; nsp(10); Inc.TueTot
RELATED TOPICS |