|
|
|
|
|
- Title of dialog boxes
- Title of clipped windows
- Title presentation
- Equivalence
- Minimized window
CurrentTitle (Function) In french: TitreEnCours Sets the title of the current window (returned by CurrentWin). Reminder By default, the window title is the one defined in the editor.
CurrentTitle(gBackground(LightRed) + gPen(Black) + "Modification d'une fiche client")
CurrentTitle(EOT + gBackground(LightRed) + gPen(Black) + " en cours")
Syntax
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.
Remarks Title of dialog boxes To change the title of the next window to open, use NextTitle. The following code: CurrentTitle(<New window title>) is equivalent to the Title property:
MyWindow.Title = <New window title> Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|