Generic function
Returns the size of the specified frame.
frame-size frame => width height
<frame>.
<integer>.
<integer>.
duim-frames
duim-frames
Returns the size of frame, measured in pixels.
The following example creates a simple frame, then displays it and tests its size. You should run this code in the interactor, pressing the RETURN key at the points indicated.
define variable *frame* =
make(<simple-frame>, title: "A frame",
layout: make(<button>));RETURNstart-frame(*frame*);RETURN
frame-size(*frame*);RETURN