Uses of Class
org.controlsfx.control.spreadsheet.SpreadsheetColumn
-
Packages that use SpreadsheetColumn Package Description org.controlsfx.control.spreadsheet A package containing model and view related classes used by theSpreadsheetView
control. -
-
Uses of SpreadsheetColumn in org.controlsfx.control.spreadsheet
Methods in org.controlsfx.control.spreadsheet that return types with arguments of type SpreadsheetColumn Modifier and Type Method Description javafx.collections.ObservableList<SpreadsheetColumn>
SpreadsheetView. getColumns()
Return an ObservableList of theSpreadsheetColumn
used.javafx.collections.ObservableList<SpreadsheetColumn>
SpreadsheetView. getFixedColumns()
You can freeze or unfreeze a column by modifying this list.Methods in org.controlsfx.control.spreadsheet with parameters of type SpreadsheetColumn Modifier and Type Method Description void
SpreadsheetViewSelectionModel. clearAndSelect(int row, SpreadsheetColumn column)
Clears all selection, and then selects the cell at the given row/column intersection in theSpreadsheetView
.void
SpreadsheetView. edit(int row, SpreadsheetColumn column)
Causes the cell at the given row/column view indexes to switch into its editing state, if it is not already in it, and assuming that the SpreadsheetView and column are also editable.void
SpreadsheetViewSelectionModel. focus(int row, SpreadsheetColumn column)
Causes the cell at the given index to receive the focus.void
SpreadsheetView. hideColumn(SpreadsheetColumn column)
Hide the specifiedSpreadsheetColumn
.void
SpreadsheetView. scrollToColumn(SpreadsheetColumn column)
Scrolls the SpreadsheetView so that the givenSpreadsheetColumn
is visible.void
SpreadsheetViewSelectionModel. select(int row, SpreadsheetColumn column)
Selects the cell at the given row/column intersection.void
SpreadsheetViewSelectionModel. selectRange(int minRow, SpreadsheetColumn minColumn, int maxRow, SpreadsheetColumn maxColumn)
Selects the cells in the range (minRow, minColumn) to (maxRow, maxColumn), inclusive.void
SpreadsheetView. showColumn(SpreadsheetColumn column)
Show the specifiedSpreadsheetColumn
.Method parameters in org.controlsfx.control.spreadsheet with type arguments of type SpreadsheetColumn Modifier and Type Method Description boolean
SpreadsheetView. areSpreadsheetColumnsFixable(List<? extends SpreadsheetColumn> list)
Indicates whether a List ofSpreadsheetColumn
can be fixed or not.
-