A description of the control and/or its purpose for use by accessibility tools such as readers for visually-impaired users.
Column controls
PowerBuilder dot notation:
dw_control.Object.controlname.AccessibleDescription
Describe and Modify argument:
"controlname.AccessibleDescription { = '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 describes the control’s purpose or appearance |
You do not need to supply a description if the AccessibleName and AccessibleRole properties adequately describe the control, as in the case of a button with the label OK. You should provide a description for a picture or report control.
On the Other page in the Properties view, type a description in the AccessibleDescription text box.
dw_1.Object.b_1.AccessibleDescription = 'Scrolls to Next Row'
ls_data = dw_1.Describe("b_1.AccessibleDescription")
dw_1.Modify("b_1.AccessibleDescription='Scrolls to next row'")