AccessibleDescription DataWindow object property
Description
A description of the control and/or its purpose for
use by accessibility tools such as readers for visually-impaired
users.
Controls
Column, computed field, picture, text, graph, group box, and
button controls
Syntax
PowerBuilder dot notation:
1 |
<span>dw_control</span>.Object.<span>controlname</span>.AccessibleDescription |
Describe and Modify argument:
1 |
"<span>controlname</span>.AccessibleDescription { = '<span>description </span>' }" |
Parameter |
Description |
---|---|
columnname |
The name of the control for which you |
description |
(exp) A string that |
Usage
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.
In the painter
In the Other tab in the Properties view, type a description
in the AccessibleDescription text box.
Examples
1 |
dw1.Object.b_1.AccessibleDescription = 'Scrolls to Next Row' |
1 |
strData = dw1.Describe("b_1.AccessibleDescription") |
1 |
dw1.Modify("b_1.AccessibleDescription='Scrolls to next row'") |