| 
 | 
- min-width — - default is the initial graphical minimum width; passed to min-width 
- min-height — - default is the initial graphical minimum height; passed to min-height 
- stretchable-width — - default is class-specific; passed to stretchable-width 
- stretchable-height — - default is class-specific; passed to stretchable-height 
method
(send an-area get-graphical-min-size)
→ 
dimension-integer? dimension-integer? 
See Geometry Management for more information. Note that the return value does not depend on the area’s min-width and min-height settings.
method
(send an-area get-parent)
→ (or/c (is-a?/c area-container<%>) #f) 
method
(send an-area min-width) → dimension-integer?
(send an-area min-width w) → void? w : dimension-integer? 
The minimum width is ignored when it is smaller than the area’s graphical minimum width, or when it is smaller than the width reported by container-size if the area is a container. See Geometry Management for more information.
An area’s initial minimum width is its graphical minimum width. See also get-graphical-min-size .
When setting the minimum width, if w is smaller than the internal hard minimum, an exn:fail:contract exception is raised.
method
(send an-area min-height) → dimension-integer?
(send an-area min-height h) → void? h : dimension-integer? 
The minimum height is ignored when it is smaller than the area’s graphical minimum height, or when it is smaller than the height reported by container-size if the area is a container. See Geometry Management for more information.
An area’s initial minimum height is its graphical minimum height. See also get-graphical-min-size .
When setting the minimum height (in pixels); if h is smaller than the internal hard minimum, an exn:fail:contract exception is raised.
method
(send an-area stretchable-height) → boolean?
(send an-area stretchable-height stretch?) → void? stretch? : any/c 
method
(send an-area stretchable-width) → boolean?
(send an-area stretchable-width stretch?) → void? stretch? : any/c