Maximize window size

Hi How Can I find the size of my window when it is maximize.

thanks

Not quite sure what you’re asking here. In a script you can do something like this to get the window’s size:

window = system.gui.getParentWindow(event) bounds = window.getBounds() print bounds.x, bounds.y, bounds.width, bounds.height