This commit is contained in:
2025-08-07 00:13:53 +02:00
parent 1740f7b083
commit 893dce863d

View File

@@ -44,7 +44,7 @@ See also @racket[pane%].
Returns the currently set minimum width for the given column. Returns the currently set minimum width for the given column.
} }
@defmethod*[([(column-align (c column-index) [align <- (or/c 'left 'center 'right)])])] @defmethod*[([(column-align (c column-index) [align <- (or/c 'left 'center 'right)]) (or/c 'left 'center 'right)])]{
Gets or sets the horizontal alignment of a given column c. Gets or sets the horizontal alignment of a given column c.
Returns the currently set alignment. Returns the currently set alignment.
@@ -52,7 +52,7 @@ See also @racket[pane%].
Note. Use this right after declaring the columns pane and before adding any children. Note. Use this right after declaring the columns pane and before adding any children.
} }
@defmethod*[([(column-keep-min-width (c column-index) [k (or/c #f #t)])])] @defmethod*[([(column-keep-min-width (c column-index) [k boolean]) boolean?])]{
Gets or sets the keep minimal width parameter for a given column c. Gets or sets the keep minimal width parameter for a given column c.
Returns the currently set value. Returns the currently set value.
@@ -61,7 +61,6 @@ See also @racket[pane%].
It will grow however, when needed. It will grow however, when needed.
} }
} }
@section{Example code} @section{Example code}