Example usage for Java javafx.scene.control ComboBox fields, constructors, methods, implement or subclass
The text is from its open source code.
ComboBox() Creates a default ComboBox instance with an empty #itemsProperty() items list and default #selectionModelProperty() selection model . | |
ComboBox(ObservableList Creates a default ComboBox instance with the provided items list and a default #selectionModelProperty() selection model . |
ObjectProperty | cellFactoryProperty() |
ObjectProperty | converterProperty() Converts the user-typed input (when the ComboBox is #editableProperty() editable ) to an object of type T, such that the input may be retrieved via the #valueProperty() value property. |
ReadOnlyObjectProperty | editorProperty() |
ListCell | getButtonCell() |
Callback | getCellFactory() |
StringConverter | getConverter() |
TextField | getEditor() |
ObservableList | getItems() |
SingleSelectionModel | getSelectionModel() |
int | getVisibleRowCount() |
ObjectProperty | itemsProperty() |
ObjectProperty | selectionModelProperty() |
void | setCellFactory(Callback |
void | setConverter(StringConverter |
void | setItems(ObservableList |
void | setVisibleRowCount(int value) |
IntegerProperty | visibleRowCountProperty() |