|
|
|
|
|
|
|
|
|
|
Accessibility (Property) In french: Accessibilité
The Accessibility property gets and sets the accessibility properties of a control. These properties are as follows: - Decorative: indicates whether the field is a decorative field, i.e. whether it should be ignored by the reading system.
- Description: describes the contents of the field.
- Action description: describes the field action. This description is only taken into account for controls with a simple, clearly identified action.
- Reading order: specify the order in which fields are read by the screen reader.
The Accessibility property allows you to personalize and change the settings defined in the control description window ("Help" tab, "Include this control in the accessibility system", "Customize"). Remarks: - In Android, this feature is referred to as TalkBack.
- In iOS, this feature is referred to as VoiceOver.
SAI_Nom.Accessibilité.Description = "Nom de l'utilisateur"
SAI_Nom.Accessibilité.DescriptionAction = "Saisissez votre nom"
SAI_Nom.Accessibilité.Décor = False
SAI_Nom.Accessibilité.OrdreLecture = 1
SAI_Adresse.Accessibilité.Description = "Adresse de livraison"
SAI_Adresse.Accessibilité.DescriptionAction = "Saisissez l'adresse de livraison"
SAI_Adresse.Accessibilité.Décor = False
SAI_Adresse.Accessibilité.OrdreLecture = 3
Syntax
Getting accessibility property values Hide the details
<Result> = <Control used>.Accessibility.<Property name>
<Result>: Type corresponding to the property Result corresponding to the property used. <Control used>: Control name Name of the control used. <Property name>: Accessibility property applied:
| | | | Property | Type | Description |
|---|
| ActionDescription | Character string | Description of the action of the control. This description is taken into account only on fields with a simple, clearly identified action: click on Button controls, click on Clickable Image controls, select an option in a Switch or Picker control, select in a Combo control, a List control, a Table control or a RepeatString control. | | DecorativeContent | Boolean | - True, if the control is used as decorative content and should be ignored by the screen reader,
- False otherwise.
| | Description | Character string | Description of the content of the control. | | ReadOrder | Integer | Order in which the screen reader will read the controls. Simply specify the number. Controls will be read in ascending order. |
Setting the values of accessibility properties Hide the details
<Control used>.Accessibility.<Property name> = <New value>
<Control used>: Control name Name of the control used. <Property name>: Name of the property to be applied:
| | | | Property | Type | Description |
|---|
| ActionDescription | Character string | Description of the action of the control. This description is taken into account only on fields with a simple, clearly identified action: click on Button controls, click on Clickable Image controls, select an option in a Switch or Picker control, select in a Combo control, a List control, a Table control or a RepeatString control. | | DecorativeContent | Boolean | - True, if the control is used as decorative content and should be ignored by the screen reader,
- False otherwise.
| | Description | Character string | Description of the content of the control. | | ReadOrder | Integer | Order in which the screen reader will read the controls. Simply specify the number. Controls will be read in ascending order. |
<New value>: Type corresponding to the property New value of the property.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|