1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00
QB64-PE/internal/help/PRINT.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

89 lines
6.4 KiB
Plaintext

The {{KW|PRINT}} statement prints numeric or string expressions to the program screen. Typing shortcut '''?''' will convert to PRINT.
{{PageSyntax}}
::: '''PRINT''' [{{Parameter|expression}}] [{;|,] [''expression''...]
{{Parameters}}
* {{Parameter|expression}} is a numeric or string expression or list of expressions to be written to the screen. End quotes will not be displayed in strings.
* The print statement can be followed by a [[semicolon]] to stop the print cursor or a [[comma]] to tab space the next print.
''Usage:''
* [[STRING]] values will eliminate leading and trailing quotation marks when printed to the screen. Use [[CHR$]](34) to add quotes to the [[SCREEN]].
* PRINT with no parameters moves the print cursor to the next print row at column 1.
* {{Parameter|expression}} is a numeric or string expression to be printed.
** [[SPACE$]]({{Parameter|n%}}) or [[SPC]]({{Parameter|n%}}) - specifies that {{Parameter|n%}} space characters will be printed.
** [[TAB]]({{Parameter|column%}}) - specifies that the print cursor is to move to column number {{Parameter|column%}}. If the print cursor is already beyond that column, it is moved to the designated column on the next row.
* A ''separator'' is used to separate multiple expressions and specifies how the print cursor is to be moved:
** [[Semicolon]](;) - specifies that the print cursor stops at the end of the printed ''expression'' and may append later ''expressions'' or prints. PRINT ; or PRINT ""; will stop cursor movement and append later prints. Ending [[semicolon]]s can also stop screen roll.
** [[Comma]](,) - specifies that the print cursor is to move to the next 14-column tab-stop. If the print cursor is at column 56 or greater, it is moved to the next row at column 1. When used after an ''expression'' it may Tab-stop append later prints.
** [[+|Plus]](+) uses [[concatenation]] to add [[STRING]] expressions ONLY with no spacing. '''Cannot combine numerical ''expression''s!'''
** If a {{Parameter|separator}} is not used at the end of the expression list, the print cursor moves to the next row at column 1.
* When '''printing numerical''' ''expressions'' values, the following rules are used:
** If the value is positive, the number is prefixed with a space character, otherwise, the number is prefixed with a negative sign (-).
** If the value is an integer (whole number), no decimal point or fractional part will be printed.
** If the value is not an [[INTEGER|integer]](whole number) and has zero for a coefficient, no leading zero is printed. EX: -0.123 prints "-.123 "
** If the expression is in [[scientific notation]], the number is also printed in scientific notation.
** The number is [[PRINT|printed]] with a space after it unless [[STR$]](number) is used to convert it to string text.
** Numerical values MUST be added to a PRINT statement string using [[comma]]s or [[semicolon]]s on each side of the value or by using [[STR$]] to convert the value to a string to use [[concatenation]] (+ string addition).
* [[VIEW PRINT]] can set up a viewport area for PRINTs. Text printed on the bottom view port row will scroll the text upward.
* Text to be printed can be a [[STRING]] variable or a literal value inside of quotation marks.
* Use [[semicolon]] ends on bottom 2 rows of the SCREEN mode used or the PRINT will roll the screen up.
* '''Quotes cannot be inside of a literal STRING! Use [[CHR$]](34) [[concatenation]] to insert [[quotation mark]]s into a literal string.'''
* To better format number and text data placement use {{KW|PRINT USING}}.
* Instead of typing PRINT you can just type a [[question mark]] (?). It will change to PRINT when enter is pressed in the IDE.
* Use the [[_PRINTMODE]] statement before a print to deal with the text background in '''QB64''':
:*'''1''' _KEEPBACKGROUND: Text background transparent. Only the text is displayed over anything behind it.
:*'''2''' _ONLYBACKGROUND: Text background is only displayed. Text is transparent to anything behind it.
:*'''3''' _FILLBACKGROUND: Text and background block anything behind them. Default setting.
:* Use the [[_PRINTMODE (function)]] to find the current _PRINTMODE setting number.
* [[WRITE]] can be used to print a list of comma separated data values to the screen with [[comma]]s between each value.
* Use [[_DEST]] [[_CONSOLE]] before PRINT statements to be used in a [[$CONSOLE|console]] window.
* Use [[_CONTROLCHR]] '''OFF''' to PRINT the unprintable lower [[ASCII]] control characters in QB64.
''Example 1:'' Using semicolons, comma tabs or concatenation to insert [[ASCII]] characters and numbers in a PRINT:
{{CodeStart}}
{{Cl|PRINT}} CHR$(34); "Hello world!"; CHR$(34) ' adding quotation marks
{{Cl|PRINT}} 123 'demonstrates the positive leading space
a$ = "Hello country!": a = 321: b = -321
{{Cl|PRINT}} a$, a ' demonstrates comma in statement
{{Cl|PRINT}} a$; a ' demonstrates semicolon in statement
{{Cl|PRINT}} a$ + {{Cl|STR$}}(b) ' concatenation of string numerical values only
? "Hello city!" ' a ? changes to PRINT after moving cursor from the code line in IDE
{{CodeEnd}}
{{OutputStart}}"Hello world!"
123
Hello country! 321
Hello country! 321
Hello country!-321
Hello city!
{{OutputEnd}}
:First PRINT prints the text between two quotation marks, then it prints the value 123, notice that there are no quotation marks when printing the value, quotation marks mean that it will be treated like a literal string of text. a$ is set to "Hello country" and 'a' is set to the value 321, the dollar sign is used when a variable holds the text string. The contents of a$ is then printed and the "," means that the value of 'a' is printed separated by a tab and ";" means that there is no separation from the other text except for the leading positive value space.
''Example 2:'' Changing colors in a line of text using semicolons with colon separators between PRINTs on the same code line.
{{CodeStart}}
{{Cl|COLOR}} 12: {{Cl|PRINT}} "Start red "; : {{Cl|COLOR}} 10: {{Cl|PRINT}} "and end green."
{{Cl|COLOR}} 11: {{Cl|PRINT}} "Start aqua ";
{{Cl|COLOR}} 14: {{Cl|PRINT}} "and end blue."
{{CodeEnd}}
{{OutputStart}}{{text|Start red|#FF1515}} {{text|and end green.|#15FF15}}
{{text|Start aqua|#15FFFF}} {{text|and end blue.|#0000FF}} {{OutputEnd}}
{{PageSeeAlso}}
* [[_PRINTMODE]], [[_PRINTSTRING]], [[PRINT USING]]
* [[SPC]], [[TAB]], [[SPACE$]], [[SCREEN]]
* [[CSRLIN]], [[POS]], [[SCREEN (function)]]
* [[COLOR]], [[LOCATE]], [[VIEW PRINT]]
* [[INPUT]], [[STR$]], [[CHR$]]
* [[ASCII]] (character codes), [[_CONTROLCHR]]
* [[Text Using Graphics]] (Demo)
{{PageNavigation}}
<