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 / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones varias de WINDEV
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
Generates a random "Lorem ipsum" text to temporarily populate a control with text, for example. This text does not contain any accents.
Novedad versión 2025
WEBDEV - Código Navegador This function is now available in browser code.
Ejemplo
// Fill an edit control with a 200-word "Lorem ipsum" text 
// that will be displayed in the back cover of a book

// Generate the 200-word text
sCoverText is string = GenerateLorem(200)
// Display text in the Edit control
EDT_cover = sCoverText
Sintaxis
<Result> = GenerateLorem(<Number of words> [, <Seed>])
<Result>: Character string
  • Generated text.
  • Empty string ("") if the number of words specified is 0.
<Number of words>: Integer
Number of words to generate. If this number is 0, the text returned will be an empty string ("").
<Seed>: Integer
Used to change the generated text.
For each value of this parameter, a unique text is generated.
If this parameter is not specified, the generated text will be different each time the function is called.
Novedad versión 2025
WEBDEV - Código Navegador This parameter is not supported. The text generated is different each time the function is called.
Componente: wd300std.dll
Versión mínima requerida
  • Versión 26
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 23/10/2024

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