ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
  • Modifying the writing direction in a window
  • Modifying the writing direction in a control
  • Required configuration
  • Actual writing direction
  • Limits
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The TextDirection property is used to determine and change the writing direction in a window, report or control (useful for languages such as Arabic or Hebrew).
Note: The writing direction of a language can be defined directly in the project's language options:
  • On the "Project" tab, in the "Project" group, click "Description".
  • On the "Languages" tab, select the "Miscellaneous" language options and configure the "Text direction".
Example
// Changement du sens d'écriture pour tous les champs de la fenêtre
IF FEN_Saisie.SensEcriture = tdDefault THEN
	FEN_Saisie.SensEcriture = tdRightToLeft
END
Syntax

Finding out the writing direction currently used in a window, report or control Hide the details

<Result> = <Element used>.TextDirection
<Result>: Integer constant
Writing direction currently used. This constant can correspond to one of the following values:
tdDefaultDefault text direction (text direction defined for the current language in the characteristics of the project).
tdLeftToRightText written from left to right.
tdRightToLeftText written from right to left.
<Element used>: Name of control, window or report
Name of the element (window, report or control) for which the writing direction is requested.

Modifying the writing direction used in a window, report or control Hide the details

<Element used>.TextDirection = <New direction>
<Element used>: Name of control, window or report
Name of the element (window, report or control) for which the writing direction must be modified.
<New direction>: Integer constant
New writing direction. This constant can correspond to one of the following values:
tdDefaultDefault text direction (text direction defined for the current language in the characteristics of the project).
tdLeftToRightText written from left to right.
tdRightToLeftText written from right to left.
Remarks

Modifying the writing direction in a window

When the writing direction is reversed in a window (tdRightToLeft constant):
  • The marker of the window is modified. The window origin (0, 0) changes from the upper-left corner to the upper-right corner. The X-axis is oriented to the left. The anchor of controls is modified accordingly.
  • The controls are displayed in "mirror".
  • All fields defined with the constant seDefault change to seRightLeft: field labels are positioned on the right-hand side of the field, scrollbars appear on the left-hand side of the field, ...

Modifying the writing direction in a control

When the writing direction on a field is Reverse (constant seDroiteAGauche), only the display mode of the field concerned is modified: field labels are positioned on the right-hand side of the field, scrollbars appear on the left-hand side of the field, ...

Required configuration

The languages written from right to left are supported by the Windows versions later than Windows 95 and NT4.
To enable this option:
  1. Display the control panel ("Start .. Control panel").
  2. Select "Regional and language options".
  3. On the "Languages" tab, select "Install the files for the languages with right-to-left complex script".
  4. Validate.

Actual writing direction

If the writing direction corresponds to the tdDefault constant, use the RightToLeft property to determine the "actual" writing direction. This property returns True if the actual writing direction goes from right to left and False if the actual writing direction goes from left to right.

Limits

In the reports, this property is available for the following elements:
  • Report.
  • Static Text control.
  • Calculated control.
  • RTF control.
  • Preset control.
  • Link control.
  • Edit control.
  • Chart control.
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help