A label that briefly describes the control for use by accessibility tools such as readers for visually-impaired users.
Column controls
PowerBuilder dot notation:
dw_control.Object.controlname.AccessibleName
Describe and Modify argument:
"controlname.AccessibleName { = 'description ' }"
Parameter |
Description |
---|---|
columnname |
The name of the control for which you want to get or set the accessible description |
description |
(exp) A string that briefly describes the control |
The AccessibleName property is a brief description, such as the text in a button or the name of a menu item.
On the Other page in the Properties view, type a name in the AccessibleName text box.
dw_1.Object.b_1.AccessibleName = 'Next'
ls_data = dw_1.Describe("b_1.AccessibleName")
dw_1.Modify("b_1.AccessibleName='Next'")