Difference between revisions of "83Plus:Basic:Graphics:Output("

From WikiTI
Jump to: navigation, search
(Synopsis: It's (Y,X); (row,column))
(Cleaned up formatting to match template)
 
Line 4: Line 4:
 
'''Token size:''' 1 byte
 
'''Token size:''' 1 byte
  
'''Syntax:''' Output(Y,X,value
+
'''Syntax:''' Output(''row'',''col'',''value'')
  
Displays a value or text on the homescreen, at position (X,Y).
+
Displays a value or text on the homescreen, at the position specified by ''row'' and ''col''.
  
 
== Outputs: ==
 
== Outputs: ==
  
''Value'' will be displayed at X,Y, where X is an integer value from 1-8, and Y is an integer value from 1-16.  
+
''value'' will be displayed at (''col'', ''row''), where ''row'' is an integer value from 1-8, and ''col'' is an integer value from 1-16.  
  
Value can be a string, a list, a variable and a matrix. If the content of value doesn't fit on the current line, it will start at the beginning of the next line, unless it already is at the bottom of the screen.
+
''value'' can be a string, a list, a variable, or a matrix. If the contents of ''value'' doesn't fit on the current line, it will start at the beginning of the next line, unless it already is at the bottom of the screen.
  
 
== Comments ==
 
== Comments ==
Line 25: Line 25:
  
 
  :Output(1,1,"wikiTI rocks
 
  :Output(1,1,"wikiTI rocks
 +
:3->A
 
  :Output(2,1,A
 
  :Output(2,1,A
  
 
== See also: ==
 
== See also: ==
 +
[[83Plus:Basic:Graphics:Disp|Disp]]

Latest revision as of 16:05, 16 September 2006


Synopsis

Token size: 1 byte

Syntax: Output(row,col,value)

Displays a value or text on the homescreen, at the position specified by row and col.

Outputs:

value will be displayed at (col, row), where row is an integer value from 1-8, and col is an integer value from 1-16.

value can be a string, a list, a variable, or a matrix. If the contents of value doesn't fit on the current line, it will start at the beginning of the next line, unless it already is at the bottom of the screen.

Comments

  • STO (->) cannot be displayed in a string with Output.
  • The double quote (") cannot be displayed with Output, as it always is treated as a string deliminer.
  • The ending parenthesis ) isn't needed, and can be left out to save a byte.
  • As always when working with a string, the ending quote " isn't needed if nothing else is to follow before a newline, and can be left out to save a byte.
  • Does not affect where the next Disp command puts text

Example

:Output(1,1,"wikiTI rocks
:3->A
:Output(2,1,A

See also:

Disp