Sealed class
The class of columns in table controls.
<object>
heading: <string>.
width:<integer>. Default value: 100.
alignment:one-of(#"left", #"right", #"center"). Default value: #"left".
generator: <function>.
callback: false-or(<function>). Default value: #f.
duim-gadgets
duim-gadgets
The class of columns in table controls.
The width: init-keyword lets you specify the width of the column. The alignment: init-keyword is used to specify how the column should be aligned in the table.
To populate the table column, the function specified by generator: is invoked. This function is called for each item in the table control, and the value returned is placed at the appropriate place in the column.
In addition, you can also specify a callback that can be used for sorting the items in the table column, using the callback: init-keyword.
None.