ShowBackColorOnXP
property (DataWindow object)
Description
Whether the background color that you select for a button displays
on Windows XP.
Applies to
DataWindow objects
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.DataWindow.ShowBackColorOnXP |
Describe and Modify argument:
|
1 |
"DataWindow.ShowBackColorOnXP{ = value }" |
|
Parameter |
Description |
|---|---|
|
value |
A boolean value that indicates whether the Values are: Yes — Display No — Do not display the |
Usage
The Background.Color property is not supported for buttons on
Windows XP by default because the current XP theme controls the
appearance of the button.
In the painter
Set the Show Backcolor on XP property on the General tab of the
Properties view for the DataWindow object. The background color you
selected will display in Preview mode.
Examples
|
1 2 |
dw1.Modify("DataWindow.ShowBackColorOnXP = yes") dw1.Object.DataWindow.ShowBackColorOnXP = "yes" |