moduleRaise()
Replaces the function raiseModule() as of the version 3.8.
The given module is used as a initial point to search for the top level window that is then raised. In case of an embedded module, it will not be raised, but instead its container module window will be.
Synopsis
int moduleRaise(string moduleName);
Parameters
Parameters | Meaning |
---|---|
moduleName | Initial point to search for the top level window that is then raised. |
Return value
The function returns 0 in normal operation or in the event of errors -1.
Description
The given module is used as a initial point to search for the top level window that is then raised. In case of an embedded module, it will not be raised, but instead its container module window will be. In case the function is used for a dock module, it will bring the dock module to the top if the module is tabbed with other dock modules.
Example
The main (top level) window is raised.
main()
{
int i;
i = moduleRaise(myModuleName());
}
Assignment
Availability
UI