Difference between revisions of "TextDisplay.cellBackColor"

From MiniScript Wiki
Jump to navigation Jump to search
(Created page with "<c>TextDisplay.cellBackColor</c> returns the background color of the given cell. See also: TextDisplay.setCellBackColor === Arguments === {| class="wikitable" |- ! Par...")
 
m (→‎Example: Fix syntax)
 
Line 20: Line 20:
 
== Example ==
 
== Example ==
  
<ms>print text.cellBackColor 0, 10</ms>
+
<ms>print text.cellBackColor(0, 10)</ms>
  
 
[[Category:Mini Micro]]
 
[[Category:Mini Micro]]

Latest revision as of 13:49, 26 February 2024

TextDisplay.cellBackColor returns the background color of the given cell.

See also: TextDisplay.setCellBackColor

Arguments

Parameter Name Type Default Value Meaning
x number 0 column of interest
y number 0 row of interest

Usage Notes

TextDisplay.cellBackColor may appear as either the text color or the surrounding color, depending on whether the given cell is in inverse mode.

Example

print text.cellBackColor(0, 10)