AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / Desarrollar una aplicación o un sitio web / Controles, ventanas y páginas / Controles: tipos disponibles / Control Área de texto enriquecido
  • Example 1: Calculating the height required to print a text in RTF
  • Example 2: Calculates the height required to print a text
iZoneHeight (Example)
Example 1: Calculating the height required to print a text in RTF
WEBDEV - Código ServidorAjax
The following example is used to calculate the height of the area required to print a text in RTF. A border is drawn (according to the height that was previously defined) and the text is printed.
// Retrieve the height of the column
dHeight is real = iZoneHeight(sRTFText, 100, iRTF)
// Draws a border
iBorder(0, 0, dHeight*2, 200)
// Text centered in the border
iPrintZoneRTF(sRTFText, 0, 0, dHeight*2, 200)
iEndPrinting()
Example 2: Calculates the height required to print a text
WEBDEV - Código ServidorAjax
The following example is used to calculate the height of the area required to print a text. A border is drawn (according to the height that was previously defined) and the text is printed.
// Retrieve the height of the column
dHeight is real = iZoneHeight("My Text", 100)
// Draws a border
iBorder(0, 0, dHeight*2, 200)
// Text centered in the border
iPrintZone("My Text", 0, 0, dHeight*2, 200, iCenterH + iCenterV)
iEndPrinting()
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: 27/05/2022

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