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 de ventanas, páginas y controles
  • Handling the value of an RTF control
  • Limits
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 property RichEdit property property is used to manage the RTF (Rich Text Format) type:
  • WINDEVJava of a window control.
    Reminder RTF type is an option for Edit control and Static Text control fields. This option is located in the "Details" tab of the control description.
  • of a Static Text control found in a report.
    Reminder RTF type is an option of the Static Text control fields. This option can be found in the "General" tab of the control description.
It is possible to:
  • find out whether the control is in RTF.
  • modify the RTF type of a control.
Ejemplo
// If the "STC_Name" control is in RTF, it becomes visible
IF STC_Name.RichEdit = True THEN
	STC_Name.Visible = True
END
Sintaxis

Finding out whether the control is in RTF Ocultar los detalles

<Result> = <Control used>.RichEdit
<Result>: Boolean
  • True if the specified element is in RTF,
  • False otherwise.
<Control used>: Control name
Name of the field to be manipulated:
  • Edit control or Static Text control in a window.
  • Static Text control in a report.

Modifying the RTF type of a control Ocultar los detalles

<Control used>.RichEdit = <Type>
<Control used>: Control name
Name of the field to be manipulated:
  • Edit control or Static Text control in a window.
  • Static Text control in a report.
<Type>: Boolean
  • True if the specified element must be in RTF,
  • False otherwise.
Observaciones
WINDEVWindows

Handling the value of an RTF control

  • If assignment (or reading) is direct or performed with the Value property: the RTF field value is in RTF format (this value contains RTF tags).
  • If assigned (or read) with the RTFToText function: the RTF field value is not in RTF format (this value contains no RTF tags).

Limits

In a window, the RichEdit property applies only to the following controls:
  • edit controls,
  • Static Text control.
  • text table column.
In a report, the RichEdit property applies only to Static Text controls.
Versión mínima requerida
  • Versión 9
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