Uses of Class
org.controlsfx.control.GridView
-
Packages that use GridView Package Description impl.org.controlsfx.skin org.controlsfx.control A package containing a number of useful controls-related classes that do not exist in the base JavaFX distribution. -
-
Uses of GridView in impl.org.controlsfx.skin
Constructors in impl.org.controlsfx.skin with parameters of type GridView Constructor Description GridViewSkin(GridView<T> control) -
Uses of GridView in org.controlsfx.control
Methods in org.controlsfx.control that return GridView Modifier and Type Method Description GridView<T>GridCell. getGridView()Returns theGridViewthat this GridCell exists within.Methods in org.controlsfx.control that return types with arguments of type GridView Modifier and Type Method Description javafx.beans.property.ObjectProperty<javafx.util.Callback<GridView<T>,GridCell<T>>>GridView. cellFactoryProperty()Property representing the cell factory that is currently set in this GridView, or null if no cell factory has been set (in which case the default cell factory provided by the GridView skin will be used).javafx.util.Callback<GridView<T>,GridCell<T>>GridView. getCellFactory()Returns the cell factory that will be used to createGridCellinstances to show in the GridView.javafx.beans.property.SimpleObjectProperty<GridView<T>>GridCell. gridViewProperty()TheGridViewthat this GridCell exists within.Methods in org.controlsfx.control with parameters of type GridView Modifier and Type Method Description voidGridCell. updateGridView(GridView<T> gridView)Sets theGridViewthat this GridCell exists within.Method parameters in org.controlsfx.control with type arguments of type GridView Modifier and Type Method Description voidGridView. setCellFactory(javafx.util.Callback<GridView<T>,GridCell<T>> value)Sets the cell factory to use to createGridCellinstances to show in the GridView.
-