ui.Application.setAppContainer() sets the MDI container name.
Syntax
ui.Application.GetCurrent().SetAppContainer("Name")
Arguments
Name |
the name of the MDI container |
Usage and examples
...
DEFINE app ui.Application
LET app = ui.Application.GetCurrent()
CALL app.SetAppType("Child")
CALL app.SetAppContainer("cont1")
...