Class TableColumnBase<S,T>

java.lang.Object
javafx.scene.control.TableColumnBase<S,T>
Type Parameters:
S - The type of the UI control (e.g. the type of the 'row').
T - The type of the content in all cells in this table column.
All Implemented Interfaces:
Styleable, EventTarget
Direct Known Subclasses:
TableColumn, TreeTableColumn

@IDProperty("id") public abstract class TableColumnBase<S,T> extends Object implements EventTarget, Styleable
Table-like controls (such as TableView and TreeTableView) are made up of zero or more instances of a concrete TableColumnBase subclass (TableColumn and TreeTableColumn, respectively). Each table column in a table is responsible for displaying (and editing) the contents of that column. As well as being responsible for displaying and editing data for a single column, a table column also contains the necessary properties to: When instantiating a concrete subclass of TableColumnBase, perhaps the two most important properties to set are the column text (what to show in the column header area), and the column cell value factory (which is used to populate individual cells in the column). Refer to the class documentation for TableColumn and TreeTableColumn for more information.
Since:
JavaFX 8.0
See Also: