16 164
edycje
Linia 116: | Linia 116: | ||
http://i.imgur.com/LlvlKuU.png | http://i.imgur.com/LlvlKuU.png | ||
==== Obsługiwane kolory w oknie tekstowym ==== | |||
Poniższy program wyświetla kolory, które są obsługiwane przez okno tekstowe. | |||
<code><poem> | |||
TextWindow.BackgroundColor = "DarkGray" | |||
TextWindow.ForegroundColor = "black" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "darkblue" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.BackgroundColor = "Black" | |||
TextWindow.ForegroundColor = "darkgreen" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "darkcyan" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "darkred" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "darkmagenta" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "darkyellow" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "darkgray" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "gray" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.BackgroundColor = "DarkGray" | |||
TextWindow.ForegroundColor = "blue" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.BackgroundColor = "Black" | |||
TextWindow.ForegroundColor = "green" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "cyan" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "red" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "magenta" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "yellow" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
TextWindow.ForegroundColor = "white" | |||
TextWindow.WriteLine(TextWindow.ForegroundColor) | |||
</poem></code> | |||
http://i.imgur.com/9T73Y9o.png | |||
=== Tytuł okna === | === Tytuł okna === |