Version: 4.2.1
pane% : class? | ||||
superclass: object% | ||||
|
A pane is a both a container and a containee area. It serves only
as a geometry management device. A pane%
cannot be hidden or disabled like a panel% object.
A pane% object has a degenerate placement strategy for managing its children; it places them all in the upper left corner and does not stretch any of them. The horizontal-pane% and vertical-pane% classes provide useful geometry management.
See also grow-box-spacer-pane%.
| ||||||||||||||||||||||||||||||||||||||||
→ (is-a?/c pane%) | ||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||
vert-margin : (integer-in 0 1000) = 0 | ||||||||||||||||||||||||||||||||||||||||
horiz-margin : (integer-in 0 1000) = 0 | ||||||||||||||||||||||||||||||||||||||||
border : (integer-in 0 1000) = 0 | ||||||||||||||||||||||||||||||||||||||||
spacing : (integer-in 0 1000) = 0 | ||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||
min-width : (integer-in 0 10000) = graphical-minimum-width | ||||||||||||||||||||||||||||||||||||||||
min-height : (integer-in 0 10000) = graphical-minimum-height | ||||||||||||||||||||||||||||||||||||||||
stretchable-width : any/c = #t | ||||||||||||||||||||||||||||||||||||||||
stretchable-height : any/c = #t |
For information about the horiz-margin and vert-margin
arguments, see subarea<%>. For information about the border, spacing, and alignment
arguments, see area-container<%>. For information about the
min-width, min-height, stretchable-width, and
stretchable-height arguments, see area<%>.