Difference between revisions of "Gb.display.cursorX"

From Gamebuino Wiki
Jump to: navigation, search
(Creation)
 
m (Re wording)
 
Line 2: Line 2:
 
__NOTOC__
 
__NOTOC__
 
== Description ==
 
== Description ==
Sets the cursor's X position.
+
Sets the cursor's X position. Used for setting the location of [[gb.display.print]] and [[gb.display.println]].
 
Using values between 0 and 83 will allow the text (or parts of it) to be seen.  
 
Using values between 0 and 83 will allow the text (or parts of it) to be seen.  
  
 
== Syntax ==
 
== Syntax ==
<pre>gb.display.cursorX = value;</pre>
+
<pre>gb.display.cursorX = x;</pre>
  
 
== Value ==
 
== Value ==
* value: any number will work fine.
+
* x: any number will work fine.
  
 
== Example ==
 
== Example ==
  
 
== See also ==
 
== See also ==

Latest revision as of 2014-08-05T02:18:20

Description

Sets the cursor's X position. Used for setting the location of gb.display.print and gb.display.println. Using values between 0 and 83 will allow the text (or parts of it) to be seen.

Syntax

gb.display.cursorX = x;

Value

  • x: any number will work fine.

Example

See also