ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Caution: In WEBDEV, the Alias property works in a different way than in WINDEV and WINDEV Mobile.
WINDEV Mobile The Alias property is used to get or change:
  • the alias of a window. To change the alias of a window, you can also use WinChangeAlias.
    Reminder: Aliases can be used to identify a window opened multiple times (common case in an MDI application).
Example
Universal Windows 10 AppAndroidAndroid Widget IOS Widget
// Ouverture d'une nouvelle fenêtre fille
OpenChild(FEN_Fille, sNomFichier)
{sNomFichier}..X = 10
// {sNomFichier} = alias de la fenêtre
// -- Code d'ouverture de FEN_Fille
PROCEDURE FEN_Fille(sNomFic)
MySelf.Alias = sNomFic
// Définition de l'alias
// Change le titre de la fenêtre que l'on vient d'ouvrir
{sNomFic}..Title = "Fichier = " + {sNomFic}..Alias
Syntax
Universal Windows 10 AppAndroidAndroid Widget iPhone/iPadIOS Widget

Getting the alias of a window Hide the details

<Current alias> = <Window>.Alias
<Current alias>: Character string
  • Alias of the window,
  • Empty string ("") if the specified window has no alias.
<Window>: Window name
Name of the window used. This parameter can be equal to:
  • MySelf. If you want to get the alias of the current window, for example.
  • an indirection to the alias of the window. The alias will be known at runtime. The name of the alias is unknown when the code is compiled.
Universal Windows 10 AppAndroidAndroid Widget iPhone/iPadIOS Widget

Changing the alias of a window Hide the details

<Window>.Alias = <New alias>
<Window>: Window name
Name of the window used. This parameter can be equal to:
  • MySelf. If you want to get the alias of the current window, for example.
  • an indirection to the alias of the window. The alias will be known at runtime. The name of the alias is unknown when the code is compiled.
<New alias>: Character string
New window alias.
Remarks
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/08/2024

Send a report | Local help