Enabled
property (DataWindow object)
Description
Determines whether a control in a DataWindow is enabled.
Applies to
Button, Computed Field, Graph, InkPicture, OLE Database Blob, OLE
Object, Picture, and Text controls
Syntax
PowerBuilder dot notation:
1 |
dw_control.Object.buttonname.Enabled |
Describe and Modify argument:
1 |
"buttonname.Enabled { = ' value ' }" |
Parameter |
Description |
---|---|
buttonname |
The name of the button that you want to enable or |
value |
Whether the button is enabled. Values Yes — (Default) The button is No — The button is |
Usage
In the painter
Select the control and set the value in the Properties view
General tab, Enabled option.
When the Enabled check box is cleared, or the Enabled property is
otherwise set to false, the button control is grayed and its actions are
not performed.
Examples
1 2 3 |
dw1.Object.b_name.Enabled = "No" setting = dw1.Describe("b_name.Enabled") dw1.Modify("b_name.Enabled ='No'") |