Uses of Class
javafx.beans.property.BooleanProperty
- 
Packages that use BooleanProperty Package Description javafx.animation Provides the set of classes for ease of use transition based animations.javafx.beans.property The packagejavafx.beans.propertydefines read-only properties and writable properties, plus a number of implementations.javafx.beans.property.adapter Provides various classes that act as adapters between a regular Java Bean property and a correspondingJavaFX Property.javafx.concurrent Provides the set of classes for javafx.task.javafx.css Provides API for making properties styleable via CSS and for supporting pseudo-class state.javafx.scene Provides the core set of base classes for the JavaFX Scene Graph API.javafx.scene.chart The JavaFX User Interface provides a set of chart components that are a very convenient way for data visualization.javafx.scene.control The JavaFX User Interface Controls (UI Controls or just Controls) are specialized Nodes in the JavaFX Scenegraph especially suited for reuse in many different application contexts.javafx.scene.control.cell Thejavafx.scene.control.cellpackage is where all cell-related classes are located, other than the core classes such asCell,IndexedCell,ListCell,TreeCell, andTableCell.javafx.scene.control.skin The javafx.scene.control.skin package is where the skin classes, typically one for each UI control, are locatedjavafx.scene.effect Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.javafx.scene.image Provides the set of classes for loading and displaying images.javafx.scene.layout Provides classes to support user interface layout.javafx.scene.media Provides the set of classes for integrating audio and video into Java FX Applications.javafx.scene.shape Provides the set of 2D classes for defining and performing operations on objects related to two-dimensional geometry.javafx.scene.text Provides the set of classes for fonts and renderable Text Node.javafx.scene.web This package provides means for loading and displaying Web content.javafx.stage Provides the top-level container classes for JavaFX content.
- 
- 
Uses of BooleanProperty in javafx.animationMethods in javafx.animation that return BooleanProperty Modifier and Type Method Description BooleanPropertyAnimation. autoReverseProperty()Defines whether thisAnimationreverses direction on alternating cycles.
- 
Uses of BooleanProperty in javafx.beans.propertySubclasses of BooleanProperty in javafx.beans.property Modifier and Type Class Description classBooleanPropertyBaseThe classBooleanPropertyBaseis the base class for a property wrapping abooleanvalue.classReadOnlyBooleanWrapperThis class provides a convenient class to define read-only properties.classSimpleBooleanPropertyThis class provides a full implementation of aPropertywrapping abooleanvalue.Methods in javafx.beans.property that return BooleanProperty Modifier and Type Method Description static BooleanPropertyBooleanProperty. booleanProperty(Property<Boolean> property)Returns aBooleanPropertythat wraps aProperty.
- 
Uses of BooleanProperty in javafx.beans.property.adapterSubclasses of BooleanProperty in javafx.beans.property.adapter Modifier and Type Class Description classJavaBeanBooleanPropertyAJavaBeanBooleanPropertyprovides an adapter between a regular Java Bean property of typebooleanorBooleanand a JavaFXBooleanProperty.
- 
Uses of BooleanProperty in javafx.concurrentMethods in javafx.concurrent that return BooleanProperty Modifier and Type Method Description BooleanPropertyScheduledService. restartOnFailureProperty()Indicates whether the ScheduledService should automatically restart in the case of a failure in the Task.
- 
Uses of BooleanProperty in javafx.cssSubclasses of BooleanProperty in javafx.css Modifier and Type Class Description classSimpleStyleableBooleanPropertyThis class extendsSimpleBooleanPropertyand provides a full implementation of aStyleableProperty.classStyleableBooleanPropertyThis class extendsBooleanPropertyBaseand provides a partial implementation of aStyleableProperty.
- 
Uses of BooleanProperty in javafx.sceneMethods in javafx.scene that return BooleanProperty Modifier and Type Method Description BooleanPropertyGroup. autoSizeChildrenProperty()Controls whether or not thisGroupwill automatically resize any managed resizable children to their preferred sizes during the layout pass.BooleanPropertyNode. cacheProperty()A performance hint to the system to indicate that thisNodeshould be cached as a bitmap.BooleanPropertyNode. disableProperty()Defines the individual disabled state of thisNode.BooleanPropertyNode. focusTraversableProperty()Specifies whether thisNodeshould be a part of focus traversal cycle.BooleanPropertyLightBase. lightOnProperty()Defines the light on or off.BooleanPropertyNode. managedProperty()Defines whether or not this node's layout will be managed by it's parent.BooleanPropertyNode. mouseTransparentProperty()Iftrue, this node (together with all its children) is completely transparent to mouse events.BooleanPropertyNode. pickOnBoundsProperty()Defines how the picking computation is done for this node when triggered by aMouseEventor acontainsfunction call.BooleanPropertyPerspectiveCamera. verticalFieldOfViewProperty()Defines whether thefieldOfViewproperty will apply to the vertical dimension of the projection.BooleanPropertyNode. visibleProperty()Specifies whether thisNodeand any subnodes should be rendered as part of the scene graph.
- 
Uses of BooleanProperty in javafx.scene.chartMethods in javafx.scene.chart that return BooleanProperty Modifier and Type Method Description BooleanPropertyXYChart. alternativeColumnFillVisibleProperty()If true then alternative vertical columns will have fillsBooleanPropertyXYChart. alternativeRowFillVisibleProperty()If true then alternative horizontal rows will have fillsBooleanPropertyAxis. animatedProperty()When true any changes to the axis and its range will be animated.BooleanPropertyChart. animatedProperty()When true any data changes will be animated.BooleanPropertyAxis. autoRangingProperty()This is true when the axis determines its range from the data automaticallyBooleanPropertyPieChart. clockwiseProperty()When true we start placing slices clockwise from the startAngleBooleanPropertyAreaChart. createSymbolsProperty()When true, CSS styleable symbols are created for any data items that don't have a symbol node specified.BooleanPropertyLineChart. createSymbolsProperty()When true, CSS styleable symbols are created for any data items that don't have a symbol node specified.BooleanPropertyStackedAreaChart. createSymbolsProperty()When true, CSS styleable symbols are created for any data items that don't have a symbol node specified.BooleanPropertyNumberAxis. forceZeroInRangeProperty()When true zero is always included in the visible range.BooleanPropertyCategoryAxis. gapStartAndEndProperty()If this is true then half the space between ticks is left at the start and endBooleanPropertyXYChart. horizontalGridLinesVisibleProperty()True if horizontal grid lines should be drawnBooleanPropertyXYChart. horizontalZeroLineVisibleProperty()If this is true and the horizontal axis has both positive and negative values then a additional axis line will be drawn at the zero pointBooleanPropertyPieChart. labelsVisibleProperty()When true pie slice labels are drawnBooleanPropertyChart. legendVisibleProperty()When true the chart will display a legend if the chart implementation supports a legend.BooleanPropertyValueAxis. minorTickVisibleProperty()true if minor tick marks should be displayedBooleanPropertyAxis. tickLabelsVisibleProperty()true if tick mark labels should be displayedBooleanPropertyAxis. tickMarkVisibleProperty()true if tick marks should be displayedBooleanPropertyXYChart. verticalGridLinesVisibleProperty()True if vertical grid lines should be drawnBooleanPropertyXYChart. verticalZeroLineVisibleProperty()If this is true and the vertical axis has both positive and negative values then a additional axis line will be drawn at the zero point
- 
Uses of BooleanProperty in javafx.scene.controlMethods in javafx.scene.control that return BooleanProperty Modifier and Type Method Description BooleanPropertyCheckBox. allowIndeterminateProperty()Determines whether the user toggling the CheckBox should cycle through all three states: checked, unchecked, and undefined.BooleanPropertyTitledPane. animatedProperty()The animated state of the TitledPane.BooleanPropertyComboBoxBase. armedProperty()Indicates that the ComboBox has been "armed" such that a mouse release will cause the ComboBoxComboBoxBase.show()method to be invoked.BooleanPropertyButton. cancelButtonProperty()A Cancel Button is the button that receives a keyboard VK_ESC press, if no other node in the scene consumes it.BooleanPropertyTableSelectionModel. cellSelectionEnabledProperty()A boolean property used to represent whether the table is in row or cell selection modes.BooleanPropertyTab. closableProperty()The closable state for this tab.BooleanPropertyTitledPane. collapsibleProperty()The collapsible state of the TitledPane.BooleanPropertyButton. defaultButtonProperty()A default Button is the button that receives a keyboard VK_ENTER press, if no other node in the scene consumes it.BooleanPropertyMenuItem. disableProperty()Sets the individual disabled state of this MenuItem.BooleanPropertyTab. disableProperty()Sets the disabled state of this tab.BooleanPropertyCell. editableProperty()A property representing whether this cell is allowed to be put into an editing state.BooleanPropertyComboBoxBase. editableProperty()Specifies whether the ComboBox allows for user input.BooleanPropertyListView. editableProperty()Specifies whether this ListView is editable - only if the ListView and the ListCells within it are both editable will a ListCell be able to go into their editing state.BooleanPropertySpinner. editableProperty()The editable property is used to specify whether user input is able to be typed into the Spinnereditor.BooleanPropertyTableColumnBase. editableProperty()Specifies whether this table column allows editing.BooleanPropertyTableView. editableProperty()Specifies whether this TableView is editable - only if the TableView, the TableColumn (if applicable) and the TableCells within it are both editable will a TableCell be able to go into their editing state.BooleanPropertyTextInputControl. editableProperty()Indicates whether this TextInputControl can be edited by the user.BooleanPropertyTreeTableView. editableProperty()Specifies whether this TreeTableView is editable - only if the TreeTableView and the TreeCells within it are both editable will a TreeCell be able to go into their editing state.BooleanPropertyTreeView. editableProperty()Specifies whether this TreeView is editable - only if the TreeView and the TreeCells within it are both editable will a TreeCell be able to go into their editing state.BooleanPropertyDialogPane. expandedProperty()Represents whether the dialogPane is expanded.BooleanPropertyTitledPane. expandedProperty()The expanded state of the TitledPane.BooleanPropertyTreeItem. expandedProperty()The expanded state of this TreeItem.BooleanPropertyScrollPane. fitToHeightProperty()If true and if the contained node is a Resizable, then the node will be kept resized to match the height of the ScrollPane's viewport.BooleanPropertyScrollPane. fitToWidthProperty()If true and if the contained node is a Resizable, then the node will be kept resized to match the width of the ScrollPane's viewport.BooleanPropertyCustomMenuItem. hideOnClickProperty()If true, this menu item, and all visible menus, will be hidden when this menu item is clicked on.BooleanPropertyCheckBoxTreeItem. independentProperty()ABooleanPropertyused to represent the independent state of this CheckBoxTreeItem.BooleanPropertyCheckBox. indeterminateProperty()Determines whether the CheckBox is in the indeterminate state.BooleanPropertyCheckBoxTreeItem. indeterminateProperty()ABooleanPropertyused to represent the indeterminate state of this CheckBoxTreeItem.BooleanPropertyLabeled. mnemonicParsingProperty()MnemonicParsing property to enable/disable text parsing.BooleanPropertyMenuItem. mnemonicParsingProperty()MnemonicParsing property to enable/disable text parsing.BooleanPropertyScrollPane. pannableProperty()Specifies whether the user should be able to pan the viewport by using the mouse.BooleanPropertyTableColumnBase. reorderableProperty()A boolean property to toggle on and off the 'reorderability' of this column (with drag and drop - reordering by modifying the appropriatecolumnslist is always allowed).BooleanPropertyDialog. resizableProperty()Represents whether the dialog is resizable.BooleanPropertyTableColumnBase. resizableProperty()Used to indicate whether the width of this column can change.BooleanPropertyTabPane. rotateGraphicProperty()The rotateGraphic state of the tabs in the TabPane.BooleanPropertyCheckBox. selectedProperty()Indicates whether this CheckBox is checked.BooleanPropertyCheckBoxTreeItem. selectedProperty()ABooleanPropertyused to represent the selected state of this CheckBoxTreeItem.BooleanPropertyCheckMenuItem. selectedProperty()Represents the current state of this CheckMenuItem.BooleanPropertyRadioMenuItem. selectedProperty()BooleanPropertyToggle. selectedProperty()The selected state for thisToggle.BooleanPropertyToggleButton. selectedProperty()Indicates whether this toggle button is selected.BooleanPropertyTreeTableView. showRootProperty()Property that represents whether or not the TreeTableView root node is visible.BooleanPropertyTreeView. showRootProperty()Property that represents whether or not the TreeView root node is visible.BooleanPropertySlider. showTickLabelsProperty()Indicates that the labels for tick marks should be shown.BooleanPropertySlider. showTickMarksProperty()Specifies whether theSkinimplementation should show tick marks.BooleanPropertyDatePicker. showWeekNumbersProperty()Whether the DatePicker popup should display a column showing week numbers.BooleanPropertySlider. snapToTicksProperty()Indicates whether thevalueof theSlidershould always be aligned with the tick marks.BooleanPropertyTableColumnBase. sortableProperty()A boolean property to toggle on and off the 'sortability' of this column.BooleanPropertyTableView. tableMenuButtonVisibleProperty()This controls whether a menu button is available when the user clicks in a designated space within the TableView, within which is a radio menu item for each TableColumn in this table.BooleanPropertyTreeTableView. tableMenuButtonVisibleProperty()This controls whether a menu button is available when the user clicks in a designated space within the TableView, within which is a radio menu item for each TreeTableColumn in this table.BooleanPropertyLabeled. underlineProperty()Whether all text should be underlined.BooleanPropertyMenuBar. useSystemMenuBarProperty()Use the system menu bar if the current platform supports it.BooleanPropertySlider. valueChangingProperty()When true, indicates the current value of this Slider is changing.BooleanPropertyMenuItem. visibleProperty()Specifies whether this MenuItem should be rendered as part of the scene graph.BooleanPropertyTableColumnBase. visibleProperty()Toggling this will immediately toggle the visibility of this column, and all children columns.BooleanPropertyHyperlink. visitedProperty()Indicates whether this link has already been "visited".BooleanPropertySpinnerValueFactory. wrapAroundProperty()The wrapAround property is used to specify whether the value factory should be circular.BooleanPropertyLabeled. wrapTextProperty()If a run of text exceeds the width of the Labeled, then this variable indicates whether the text should wrap onto another line.BooleanPropertyTextArea. wrapTextProperty()If a run of text exceeds the width of theTextArea, then this variable indicates whether the text should wrap onto another line.BooleanPropertyTooltip. wrapTextProperty()If a run of text exceeds the width of the Tooltip, then this variable indicates whether the text should wrap onto another line.
- 
Uses of BooleanProperty in javafx.scene.control.cellMethods in javafx.scene.control.cell that return BooleanProperty Modifier and Type Method Description BooleanPropertyComboBoxListCell. comboBoxEditableProperty()A property representing whether the ComboBox, when shown to the user, is editable or not.BooleanPropertyComboBoxTableCell. comboBoxEditableProperty()A property representing whether the ComboBox, when shown to the user, is editable or not.BooleanPropertyComboBoxTreeCell. comboBoxEditableProperty()A property representing whether the ComboBox, when shown to the user, is editable or not.BooleanPropertyComboBoxTreeTableCell. comboBoxEditableProperty()A property representing whether the ComboBox, when shown to the user, is editable or not.
- 
Uses of BooleanProperty in javafx.scene.control.skinMethods in javafx.scene.control.skin that return BooleanProperty Modifier and Type Method Description protected BooleanPropertyTextInputControlSkin. forwardBiasProperty()Caret bias in the content. true means a bias towards forward character (true=leading/false=trailing)BooleanPropertyComboBoxListViewSkin. hideOnClickProperty()By default this skin hides the popup whenever the ListView is clicked in.BooleanPropertyVirtualFlow. pannableProperty()Indicates whether the VirtualFlow viewport is capable of being panned by the user (either via the mouse or touch events).BooleanPropertyVirtualFlow. verticalProperty()Indicates the primary direction of virtualization.
- 
Uses of BooleanProperty in javafx.scene.effectMethods in javafx.scene.effect that return BooleanProperty Modifier and Type Method Description BooleanPropertyDisplacementMap. wrapProperty()Defines whether values taken from outside the edges of the map "wrap around" or not.
- 
Uses of BooleanProperty in javafx.scene.imageMethods in javafx.scene.image that return BooleanProperty Modifier and Type Method Description BooleanPropertyImageView. preserveRatioProperty()Indicates whether to preserve the aspect ratio of the source image when scaling to fit the image within the fitting bounding box.BooleanPropertyImageView. smoothProperty()Indicates whether to use a better quality filtering algorithm or a faster one when transforming or scaling the source image to fit within the bounding box provided byfitWidthandfitHeight.
- 
Uses of BooleanProperty in javafx.scene.layoutMethods in javafx.scene.layout that return BooleanProperty Modifier and Type Method Description BooleanPropertyRegion. cacheShapeProperty()Defines a hint to the system indicating that the Shape used to define the region's background is stable and would benefit from caching.BooleanPropertyRegion. centerShapeProperty()Defines whether the shape is centered within the Region's width or height.BooleanPropertyHBox. fillHeightProperty()Whether or not resizable children will be resized to fill the full height of the hbox or be resized to their preferred height and aligned according to thealignmentvpos value.BooleanPropertyRowConstraints. fillHeightProperty()The vertical fill policy for the row.BooleanPropertyColumnConstraints. fillWidthProperty()The horizontal fill policy for the column.BooleanPropertyVBox. fillWidthProperty()Whether or not resizable children will be resized to fill the full width of the vbox or be resized to their preferred width and aligned according to thealignmenthpos value.BooleanPropertyGridPane. gridLinesVisibleProperty()For debug purposes only: controls whether lines are displayed to show the gridpane's rows and columns.BooleanPropertyRegion. scaleShapeProperty()Specifies whether the shape, if defined, is scaled to match the size of the Region.BooleanPropertyRegion. snapToPixelProperty()Defines whether this region adjusts position, spacing, and size values of its children to pixel boundaries.
- 
Uses of BooleanProperty in javafx.scene.mediaMethods in javafx.scene.media that return BooleanProperty Modifier and Type Method Description BooleanPropertyMediaPlayer. autoPlayProperty()Whether playing should start as soon as possible.BooleanPropertyAudioEqualizer. enabledProperty()Enables or disablesAudioEqualizer.BooleanPropertyMediaPlayer. muteProperty()Whether the player audio is muted.BooleanPropertyMediaView. preserveRatioProperty()Whether to preserve the aspect ratio (width / height) of the media when scaling it to fit the node.BooleanPropertyMediaView. smoothProperty()If set totruea better quality filtering algorithm will be used when scaling this video to fit within the bounding box provided byfitWidthandfitHeightor when transforming.
- 
Uses of BooleanProperty in javafx.scene.shapeMethods in javafx.scene.shape that return BooleanProperty Modifier and Type Method Description BooleanPropertyPathElement. absoluteProperty()A flag that indicates whether the path coordinates are absolute or relative.BooleanPropertyArcTo. largeArcFlagProperty()The large arc flag.BooleanPropertyShape. smoothProperty()Defines whether antialiasing hints are used or not for thisShape.BooleanPropertyArcTo. sweepFlagProperty()The sweep flag
- 
Uses of BooleanProperty in javafx.scene.textMethods in javafx.scene.text that return BooleanProperty Modifier and Type Method Description BooleanPropertyText. caretBiasProperty()BooleanPropertyText. strikethroughProperty()Defines if each line of text should have a line through it.BooleanPropertyText. underlineProperty()Defines if each line of text should have a line below it.
- 
Uses of BooleanProperty in javafx.scene.webMethods in javafx.scene.web that return BooleanProperty Modifier and Type Method Description BooleanPropertyWebView. contextMenuEnabledProperty()Specifies whether context menu is enabled.BooleanPropertyWebEngine. javaScriptEnabledProperty()Specifies whether JavaScript execution is enabled.
- 
Uses of BooleanProperty in javafx.stageMethods in javafx.stage that return BooleanProperty Modifier and Type Method Description BooleanPropertyPopupWindow. autoFixProperty()This convenience variable indicates whether, when the popup is shown, it should automatically correct its position such that it doesn't end up positioned off the screen.BooleanPropertyPopupWindow. autoHideProperty()Specifies whether Popups should auto hide.BooleanPropertyPopupWindow. consumeAutoHidingEventsProperty()Specifies whether the event, which caused the Popup to hide, should be consumed.BooleanPropertyWindow. forceIntegerRenderScaleProperty()Boolean property that controls whether only integer render scales are set by default by the system when there is a change in the associated output scale.BooleanPropertyPopupWindow. hideOnEscapeProperty()Specifies whether the PopupWindow should be hidden when an unhandled escape key is pressed while the popup has focus.BooleanPropertyStage. resizableProperty()Defines whether theStageis resizable or not by the user.
 
-