<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Commands > CONTROL SET COLOR |
Description
Set the color of a control to a specific RGB foreground and background color.
Syntax
CONTROL SET COLOR hWnd, CtrlID, Foreground, Background
Returns
None
Parameters
Name |
Type |
Optional |
Meaning |
hWnd |
Number |
No |
Handle of the dialog containing the control |
CtrlID |
Number |
No |
Control identifier assigned to the control during CONTROL ADD ... |
Foreground |
Number |
No |
Foreground new color.
If Foreground = -1, the default foreground text color is used |
Background |
Number |
No |
Background new color.
If Background = -1, the default background text color is used. If Background = -2, the text background is not painted, allowing the background to show "through" the text. The non-visible background style may produce undesirable side effects with some controls. |
Remarks
Restrictions
See also
Examples