Community
Question: Full screen
How to set full screen, maximized and no title bar runtime wincc oa?
Responses (2)
I guess you'll have some kindof 'basepanel. The first two steps are:
titleBar(false);
moduleOriginalSize();
You may also want to disable any scaling. example: the basepanel will try to fit. It may scale down when your Windows taskbar is visible. Then add the following to disable this scaling
setScaleStyle( SCALE_NONE, myModuleName() );
Share the fun
Frenk Mulder
There are multiple ways to hide the title bar. Another way would be to use the function: https://www.winccoa.com/documentation/WinCCOA/latest/en_US/ControlE_R/moduleShowFullScreen.html
It also enlarges the panel