Whether the specified control in the DataWindow is visible.
Button, Column, Computed Field, Graph, GroupBox, Line, OLE, Oval, Picture, Rectangle, Report, RoundRectangle, TableBlob, and Text controls
PowerBuilder dot notation:
dw_control.Object.controlname.Visible
Describe and Modify argument:
"controlname.Visible { = ' value ' }"
Parameter |
Description |
---|---|
controlname |
The name of the control for which you want to get or set the Visible property. |
value |
(exp) Whether the specified control is visible. Values are:
Value can be a quoted DataWindow expression. |
Select the control and set the value in the Properties view, General tab. The Visible property is not supported for column controls in DataWindow objects with the Label presentation style.
string setting
setting = dw1.Object.emp_status.Visible
dw1.Object.emp_status.Visible = 0
dw1.Object.emp_stat.Visible="0~tIf(emp_class=1,0,1)"
setting = dw1.Describe("emp_status.Visible")
dw1.Modify("emp_status.Visible=0")
dw1.Modify("emp_stat.Visible='0~tIf(emp_cls=1,0,1)'")