hiResizeWindow
hiResizeWindow(w_windowIdl_bBox) =>t / nil
Description
Resizes a window to the size of a bounding box. If w_windowID is a window within a session window, the session window is resized.
The window manager banner is not considered part of the bounding box. The window, therefore, might not appear to be placed exactly at the specified points.
This function is not available in Concept SKILL. For more information, see
Arguments
Value Returned
Examples
Resizes window (4)to 0:0 500:500 coordinate.
hiResizeWindow(window(4) list(0:0 500:500))
=> t
Resizes window(2) to match the size and position of window(1) by using the hiGetAbsWindowScreenBBox and hiResizeWindow functions:
win1BBox = hiGetAbsWindowScreenBBox(window(1) t)
hiResizeWindow(window(2) win1BBox)
Related Topics
Return to top