| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: configuration
Returns the value of the allow-component-overlap property of configuration.
The current development configuration is the value of
(configuration *ide-system*)
so
(allow-component-overlap (configuration *ide-system*))
returns the current value and
(setf (allow-component-overlap (configuration *ide-system*)) <new value>)
sets it.
See configuration
and
*ide-system*
.
If this property is true, controls on a dialog can overlap one another
(so one partially covers another). If the property value is nil
, controls cannot be placed so they overlap while
designing a form with the Integrated Development Environment. (If you
try to position a control over another, the one being positioned moves
when you release the mouse.) However, controls can always be
repositioned programmatically (with, say, (setf left) or (setf top)).
This property does not affect programmatic repositioning. It only
affects the design of forms.
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 |