racket/collects/embedded-gui/scribblings/horizontal-alignment.scrbl
Eli Barzilay ac26fe7554 A ton of @scheme*' -> @racket*' and related updates.
Also, updates some of the mzlib files to point at `racket/*' libraries
rather than to `scheme/*' ones.
2011-06-25 04:08:47 -04:00

13 lines
475 B
Racket

#lang scribble/doc
@(require "common.rkt")
@defclass/title[horizontal-alignment% dllist<%> (alignment<%> alignment-parent<%>)]{
@defconstructor[([parent (is-a?/c alignment-parent<%>)]
[show? boolean? #t]
[after (or/c (is-a?/c alignment<%>) false/c) #f])]{
Inserts a new horizontal-alignment container into
@racket[parent]---optionally after a given container also in
@racket[parent]. The new container can be initially shown or hidden.}}