1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00
QB64-PE/internal/help/_BACKGROUNDCOLOR.txt

50 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-03-18 11:36:04 +00:00
{{DISPLAYTITLE:_BACKGROUNDCOLOR}}
2017-10-10 14:55:21 +00:00
The [[_BACKGROUNDCOLOR]] function returns the current background color.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
:{{Parameter|BGcolor&}} = [[_BACKGROUNDCOLOR]]
{{PageDescription}}
* Use it to get the current background color to restore later in a program.
2017-10-10 14:55:21 +00:00
* Returns the closest attribute value of the background color.
2017-10-10 14:55:21 +00:00
{{PageExamples}}
''Example 1:'' Storing a background color for later use.
{{CodeStart}} '' ''
{{Cl|SCREEN}} 0
{{Cl|COLOR}} 1, 3
{{Cl|CLS}}
BG% = {{Cl|_BACKGROUNDCOLOR}}
{{Cl|PRINT}} BG%
{{CodeEnd}}
{{OutputStart}}3
{{OutputEnd}}
2017-10-10 14:55:21 +00:00
''Example 2:'' Understanding the function output
{{CodeStart}} '' ''
{{Cl|SCREEN}} 0
{{Cl|COLOR}} 1, 11
{{Cl|CLS}}
BG% = {{Cl|_BACKGROUNDCOLOR}}
{{Cl|PRINT}} BG% 'prints the attribute as 3 instead of 11
{{CodeEnd}}
{{OutputStart}}3
{{OutputEnd}}
:''Explanation: SCREEN 0 background colors over 7 will return the lower intensity color attribute values: EX: attribute - 8
{{PageSeeAlso}}
* [[_DEFAULTCOLOR]]
* [[COLOR]], [[SCREEN]]
* [[SCREEN (function)]]
* [[Windows_Libraries#Color_Dialog_Box|Color Dialog Box]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}
<