HELP RC_WINDOW_DIMENSIONS                          Aaron Sloman Oct 1995

rc_window_dimensions() ->(width, height)

width, height -> rc_window_dimensions();

This procedure and its updater can be used to access or update the width
and height of the Xgraphic window on the screen.

Example:

rc_start();

;;; Change window size and check this
rc_window_dimensions() =>

600,800 -> rc_window_dimensions();
60,60 -> rc_window_dimensions();

vars x;
for x from 1 by 10 to 700 do
    ;;; just keep changing the x dimension
    ;;; try this with different manually adjusted window heights
    x, false -> rc_window_dimensions()
endfor;


See LIB * RC_WINDOW_DIMENSIONS
See LIB * RC_WINDOW_COORDS


--- $poplocal/local/help/rc_window_dimensions
--- The University of Birmingham 1995.  --------------------------------
