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