LOTUSSCRIPT LANGUAGE
Prints data to the screen.
Syntax
Print [ exprList ]
Elements
exprList
If exprList is omitted, Print prints a blank line.
Use the Spc and Tab functions to insert spaces and tabs between data items.
The Print statement adds a newline character to the end of exprList (to force a carriage return), unless exprList ends with a semicolon or a comma.
LotusScript inserts "chr(10)" to represent the newline character in any multiline string (for example, a string that you type in using vertical bars or braces). If you use Print to print the string, this newline character will be translated into the platform-specific newline character(s).
Note Newline does not mean either chr(10) or chr(13) on all platforms. Newline is the character or sequence of characters that is used to mark the end of a line. This may be chr(10), or chr(13), but it may also be something else, because the actual value of newline depends on the platform.
The following table shows how the Print statement handles data items specified in exprList.
Example See Also