resizeWindow
function resizeWindow(
width: number,
height: number,
minW: number,
minH: number,
maxW: number,
maxH: number,
): void
Description
Defines the method used to change the window size updating the minimum/maximum sizes. This method is used for visual modal plugins only.
Parameters
- width
number
The window width.
- height
number
The window height.
- minW
number
The window minimum width.
- minH
number
The window minimum height.
- maxW
number
The window maximum width.
- maxH
number
The window maximum height.
Returns
void