Transparency (columns and controls) DataWindow object property
Description
Settings for the transparency of the text in a control.
Controls
Button, Column, Computed Field, GroupBox, and Text controls
Syntax
PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>controlname</span>.Transparency |
Describe and Modify argument:
1 |
"<span>controlname</span>.Transparency { = ' <span>value </span>' }" |
Parameter |
Description |
---|---|
controlname |
The name of the column or control in |
value |
(exp) An integer |
Usage
In the painter
Select the control and set the value in the Font tab of the Properties
view.

The Transparency property works with fonts, but only on screen.
Text with transparent properties appears blurry in PDF files. The
transparent text does not display in print unless you use True Type
fonts.
In Windows Vista, ClearType anti-aliasing conflicts with the
transparency settings and causes the fonts to appear blurred. Turn
off ClearType to avoid this problem; font transparency will work,
but the fonts will not be smoothed. You can also avoid using ClearType
fonts.
Examples
1 |
setting = dw_1.Object.cb_1.Transparency |
1 |
dw_1.Object.cb_1.Transparency = 50 |