Custom Properties for Labels
In the custom properties for a label, you enter a unique value for the SBL_LBL_ID key.
You use the value for this key when you designate the attribute ID value of a label control in an HTML file for a Web page. An example follows:
<label id="Label1" style="display: none;"></label>
where Label1
is the value for this key.
For accessibility support and aria labels, add the tabindex property to the code. An example follows:
<label id="Label1" tabindex = "0" style="display: none;"></label>
where Label1
is the value for this key.