| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: standard-object
Returns the value of the resizable property of the
argument. This property determines whether something (typically a
window) can be resized by a user with the mouse: it can be if the
value of the property is true and it cannot be if the value is nil
. The property does not affect programmatic
resizing, with, e.g., (setf height) or (setf width).
The resizable property may not be changed on an existing window, and must instead be specified with the inspector when designing a window (using a form) or with the :resizable initarg of make-window. (It can be changed using the inspector when designing a form but not for a running window or control, either in the IDE or in an application.)
For a grid-row
or grid-column
, this property
determines whether the user may interactively resize the row or
column. A resizable grid-row
may be resized
interactively only by clicking it in its cells that also lie in
columns that are instances of row-sizing-column-mixin
. Likewise,
a resizable grid-column
may be resized
interactively only by clicking it in its cells that also lie in rows
that are instances of column-sizing-row-mixin
. The
setf of this function may be
called at runtime to change the resizable status of a row or column.
Copyright (c) 1998-2016, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.1 page.
Created 2010.1.21.
| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |