| Allegro CL version 8.2 Unrevised from 8.1 to 8.2. 8.1 version |
Arguments: window
Returns whether a window was initially centered over the interior of its owner or parent when it was created.
(setf
centered) may be called to change the value, though this is
useful only for a form
in an IDE project, where it
indicates whether the running window that is created from the form
will be centered. A centered property appears in the inspector for a
form (or other window), where it may be set interactively.
When creating a window programmatically, centering is achieved by
passing the :centered
argument to make-window.
The value may be either nil
(the default) for
no centering, :on-parent
to center over the parent, or any other true
value to center over the owner. (The parent and owner of a
window are different only when the window is a top-level owned window,
in which case the parent is the screen and the owner is the owner
window.)
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 |