Print

From NSB App Studio
Revision as of 14:30, 22 February 2013 by Ghenne (talk | contribs) (→‎Description)
Jump to navigation Jump to search

Print [expressionA[, expressionB[, expressionC[, ...]]]]

Description

Print writes text to an output window. It can handle up to 20 comma-delimited expressions, separating each with a tab and appending a carriage return. When used without expressions, Print, writes a blank line to the output window.

When you execute Print, a window opens over your app with the output. The window can be closed by the user tapping on the x in the top right corner, or by your app executing this statement:

#NSB.Print false


Print output is formatted as Html: any valid Html expression may be used, including images and links.

Example

Rem Print Example
'Print writes text to the output window
Print "Hello World!"
Print
Print "The time is", Now

Output

Hello World!

The time is 8/18/1998 10:52:44 PM