Generic function
Sets the size of the specified frame.
set-frame-size frame width height => ()
<frame>.
<integer>.
<integer>.
None
duim-frames
duim-frames
The following example creates and displays a simple frame, then resizes it. 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>, label: "Button"));RETURNset-frame-size(*frame*, 100, 500);RETURN