DataBrowser.ChangeBackground Method | |
Set a new background brush for this data browser.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD ChangeBackground(
oBrush,
kWhere
) AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual ChangeBackground(
Usual oBrush = default,
Usual kWhere = default
)
Request Example
View SourceParameters
- oBrush (Optional)
- Type: Usual
The new background brush to be used. - kWhere (Optional)
- Type: Usual
Indicates what part of the browser should be repainted, specified as one of the following constants:
Return Value
Type:
UsualRemarks
Indicates what part of the browser should be repainted, specified as one of the following constants:
Constant | Description |
---|
GBLCOLCAPTION | The column caption area. |
GBLHITEXT | Highlighted (selected) text in the data area. |
GBLTEXT | Text in the data display area. This is the default. |
The background color can be set for different parts of the data browser as a whole, but not for individual columns. To set the background brush for individual columns, use DataColumn:ChangeBackground().
As a rule, initial settings are picked up from the standard settings of the environment—under Windows, colors are set in the Control Panel. Note that while it is possible to alter the color of the caption and column caption areas, this is not recommended when a 3-dimensional, sculpted, "button look" is used—end users can be confused if buttons don't look like buttons.
Examples
To set the background of the text area to yellow and highlighted text to blue:
1oDataBrowser:ChangeBackground(Brush{Color{COLORYELLOW}},GBLTEXT)
2oDataBrowser:ChangeBackground(Brush{Color{COLORBLUE}},GBLHITEXT)
See Also