AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones MDI
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
Returns the alias of the specified MDI child window.
In a loop, MDIEnumChild can be used to get the aliases of the MDI child windows
Example
AliasName is string
i is int = 1
AliasName = MDIEnumChild(i)
WHILE AliasName <> ""
Trace("MDI child # " + i + ": " + AliasName)
// Next child window
i++
AliasName = MDIEnumChild(i)
END
Syntax
<Result> = MDIEnumChild(<Number of Child Window>)
<Result>: Character string
  • Alias of the specified MDI child window
  • Empty string ("") if an error occurred.
<Number of Child Window>: Integer
Number of the child window used to find its alias. If this parameter is greater than the number of opened MDI child windows, <Result> will correspond to an empty string ("").
Component: wd290obj.dll
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

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