AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades varias
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The RightToLeft property is used to get the actual writing direction on a control, column, window or report.
The writing direction can be modified by the TextDirection property. If the writing direction in the control is the same direction defined in the project options, the TextDirection property returns the tdDefault constant. In this case, the RightToLeft property is used to get the actual writing direction
This property applies to:
  • WINDEV A window or window fields (except: Indexed controls, Web camera controls, Splitter, Calendar and Agenda).
  • A report or the following fields of a report:
    • Static control,
    • Calculated control,
    • RTF text control,
    • Preset control,
    • Link and Edit control,
    • Chart control.
Ejemplo
WINDEV
// The writing direction used in the column is the default direction
TABLE_Table1.COL_Column2.TextDirection = tdDefault
// Find the default writing direction
IF TABLE_Table1.COL_Column2.RightToLeft = True THEN
	EDT_Edit1.TextDirection = tdRightToLeft
END
Sintaxis

Finding out the writing direction actually used Ocultar los detalles

<Result> = <Element name>.RightToLeft
<Result>: Boolean
  • True if the writing direction used is from right to left,
  • False if the writing direction used is from left to right.
<Element name>: Name of the window, report or control
Name of the element for which the effective writing direction is sought:
  • Name of the window,
  • Name of the window controls,
  • Name of the report,
  • Name of the report controls.
Versión mínima requerida
  • Versión 12
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local