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
  • Title of clipped windows
  • Title presentation
  • Equivalence
  • Minimized window
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
Sets the title of the current window (returned by CurrentWin).
Reminder By default, the window title is the one defined in the editor.
Ejemplo
// Replace the title of the current window
CurrentTitle(gBackground(LightRed) + gPen(Black) + "Modifying a customer form")
// Modify the title of the current window
// Adds "in progress"
CurrentTitle(EOT + gBackground(LightRed) + gPen(Black) + " in progress")
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.
  • In this string, you can use gBackground to change the background color, gPen to change the text color, 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.
WINDEV

Title of clipped windows

CurrentTitle can also be used to change the title of clipped windows. However, this title is not displayed in the window.
If a clipped skin template was used, the title of the window is displayed in a Static Text control. The content of this control is ignored by CurrentTitle. It must be modified specifically.
WINDEVCódigo de Usuario (UMC)

Title presentation

The graphic string functions (starting with "g") are used to:
  • add drawings to the title,
  • modify the formatting of title (background color, text color, etc.) with gBackground and gPen.
For example: to change the text color and background color of a title:
CurrentTitle(EOT + gBackground(RGB(0, 255, 255)) + gPen(RGB(255, 0, 0)) + "Color test")
Special case under Windows Vista and 7 Windows using the "Aero system" look cannot have a graphic title: the graphic part is ignored. If "Aero" is not enabled, the graphic title will be displayed as usual.

Equivalence

The following code:
CurrentTitle(<New window title>)

is equivalent to the Title property:
MyWindow.Title = <New window title>
WINDEVJavaCódigo de Usuario (UMC)

Minimized window

When a window is minimized, the title of this window is displayed beside the icon in the taskbar.
Clasificación Lógica de negocio / UI: Código UI
Componente: wd300obj.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: 27/03/2025

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