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 / Controles, páginas y ventanas / Funciones de ventanas
  • Title of dialog boxes
  • Equivalence
  • Title display
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Modifies the title of the current window (known by function CurrentWin).
Reminder: By default, the window title is the one defined in the editor.
Ejemplo
// Remplacer le titre de la fenêtre en cours
CurrentTitle(gBackground(LightRed) + gPen(Black) + "Modification d'une fiche client")
// Modifier le titre de la fenêtre en cours
// Ajoute "en cours"
CurrentTitle(EOT + gBackground(LightRed) + gPen(Black) + " en cours")
Sintaxis
CurrentTitle(<New window title>)
<New window title>: Character string
New title for the current window.
  • If the EOT constant is specified, the new title will be added to the existing title.
  • The gBackground function can be used in this string to modify the color background, the gPen function to modify the color text, etc.. For more details, see the remarks.
Observaciones

Title of dialog boxes

The windows opened by Warning, Confirm, Dialog, Error, ErrorInfo, Info, OKCancel or YesNo have the same title as the previous window.
To change the title of the next window to open, use NextTitle.

Equivalence

The following code:
TitreEnCours(<Nouveau titre de la fenêtre>)

is equivalent to the Title property:
MaFenêtre.Titre = <Nouveau titre de la fenêtre>
Universal Windows 10 App

Title display

To display a title, the window must include an Action Bar control.
Clasificación Lógica de negocio / UI: Código UI
Componente: wd290obj.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Exemplo CurrentTitle
Exemplo CurrentTitle
CurrentTitle(gBackground(LightGreen) + gPen(Black) + "Janela Ensinando ")
//Blog com Video e Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/08/curso-windev-funcoes-windowsjanela-002.html
https://www.youtube.com/watch?v=8fw_ggyJXQI
De matos AMARILDO
17 08 2016

Última modificación: 23/03/2024

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