TI-BASIC:Backgroundoff

From Learn @ Cemetech
Revision as of 18:32, 24 February 2016 by Maintenance script (talk | contribs) (Initial automated import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

[[File:{{{picture}}}|border]]

Command Summary

Turns off the graph Background, setting it back to the default white color.

Command Syntax

BackgroundOff

Menu Location

[2ND][PRGM][LEFT ARROW][2]

Calculator Compatibility

TI-84+CE/CSE

Token Size

2 bytes

File:@@

Command Summary

@@

Command Syntax

@@

Menu Location

@@

Calculator Compatibility

@@

Token Size

@@

The BackgroundOff command has only one purpose: turn the background off. Run the command on its own line in a program with no other characters or arguments.

:BackgroundOn BLUE //Makes background blue
:BackgroundOff //Makes background white again

Optimization

BackgroundOff does essentially the same thing as turning the background on to the color white, as shown below.

:BackgroundOn WHITE
can be
:BackgroundOff

Related Commands