WINSIZE
Syntax WINSIZE windowname
 
Explanation

WINSIZE reports the size of the drawing area of a window as a list with two elements. The first element is the width in pixels and the second is the height in pixels. The input specifies the target window by its name.

To get the size of the bounding window rectangle, see WSIZE.

See also SETWINSIZE, SETWPOS, and WPOS.

Examples WINSIZE "GRAPHICS
Result: [787 295] 
WINSIZE "LISTENER
Result: [771 135] 

TopIndex