Difference between revisions of "PixelDisplay.width"

From MiniScript Wiki
Jump to navigation Jump to search
(Created page with "<c>PixelDisplay.width</c> is the number of pixel columns in the display. === Usage Notes === This is a read-only value; to change the width and height of the display, use P...")
 
Line 7: Line 7:
 
== Example ==
 
== Example ==
  
print gfx.width // prints 960 in the default state
+
print gfx.width // prints 960 in the default state
  
 
[[Category:Mini Micro]]
 
[[Category:Mini Micro]]

Revision as of 23:38, 28 April 2020

PixelDisplay.width is the number of pixel columns in the display.

Usage Notes

This is a read-only value; to change the width and height of the display, use PixelDisplay.clear.

Example

print gfx.width // prints 960 in the default state