Uses of Class
javafx.beans.property.DoubleProperty
Package | Description |
---|---|
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
javafx.beans.property |
The package
javafx.beans.property defines 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 corresponding
JavaFX
Property . |
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.canvas |
Provides the set of classes for canvas, an immediate mode style of rendering 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.skin |
The javafx.scene.control.skin package is where the skin classes, typically
one for each UI control, are located
|
javafx.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.paint |
Provides the set of classes for colors and gradients used to fill shapes and
backgrounds when rendering the scene graph.
|
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.transform |
Provides the set of convenient classes to perform rotating, scaling,
shearing, and translation transformations for
Affine objects. |
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 DoubleProperty in javafx.animation
Methods in javafx.animation that return DoubleProperty Modifier and Type Method Description DoubleProperty
RotateTransition. byAngleProperty()
Specifies the incremented stop angle value, from the start, of thisRotateTransition
.DoubleProperty
FadeTransition. byValueProperty()
Specifies the incremented stop opacity value, from the start, of thisFadeTransition
.DoubleProperty
ScaleTransition. byXProperty()
Specifies the incremented stop X scale value, from the start, of thisScaleTransition
.DoubleProperty
TranslateTransition. byXProperty()
Specifies the incremented stop X coordinate value, from the start, of thisTranslateTransition
.DoubleProperty
ScaleTransition. byYProperty()
Specifies the incremented stop Y scale value, from the start, of thisScaleTransition
.DoubleProperty
TranslateTransition. byYProperty()
Specifies the incremented stop Y coordinate value, from the start, of thisTranslateTransition
.DoubleProperty
ScaleTransition. byZProperty()
Specifies the incremented stop Z scale value, from the start, of thisScaleTransition
.DoubleProperty
TranslateTransition. byZProperty()
Specifies the incremented stop Z coordinate value, from the start, of thisTranslateTransition
.DoubleProperty
RotateTransition. fromAngleProperty()
Specifies the start angle value for thisRotateTransition
.DoubleProperty
FadeTransition. fromValueProperty()
Specifies the start opacity value for thisFadeTransition
.DoubleProperty
ScaleTransition. fromXProperty()
Specifies the start X scale value of thisScaleTransition
.DoubleProperty
TranslateTransition. fromXProperty()
Specifies the start X coordinate value of thisTranslateTransition
.DoubleProperty
ScaleTransition. fromYProperty()
Specifies the start Y scale value of thisScaleTransition
.DoubleProperty
TranslateTransition. fromYProperty()
Specifies the start Y coordinate value of thisTranslateTransition
.DoubleProperty
ScaleTransition. fromZProperty()
Specifies the start Z scale value of thisScaleTransition
.DoubleProperty
TranslateTransition. fromZProperty()
Specifies the start Z coordinate value of thisTranslateTransition
.DoubleProperty
Animation. rateProperty()
Defines the direction/speed at which theAnimation
is expected to be played.DoubleProperty
RotateTransition. toAngleProperty()
Specifies the stop angle value for thisRotateTransition
.DoubleProperty
FadeTransition. toValueProperty()
Specifies the stop opacity value for thisFadeTransition
.DoubleProperty
ScaleTransition. toXProperty()
Specifies the stop X scale value of thisScaleTransition
.DoubleProperty
TranslateTransition. toXProperty()
Specifies the stop X coordinate value of thisTranslateTransition
.DoubleProperty
ScaleTransition. toYProperty()
The stop Y scale value of thisScaleTransition
.DoubleProperty
TranslateTransition. toYProperty()
Specifies the stop Y coordinate value of thisTranslateTransition
.DoubleProperty
ScaleTransition. toZProperty()
The stop Z scale value of thisScaleTransition
.DoubleProperty
TranslateTransition. toZProperty()
Specifies the stop Z coordinate value of thisTranslateTransition
. -
Uses of DoubleProperty in javafx.beans.property
Subclasses of DoubleProperty in javafx.beans.property Modifier and Type Class Description class
DoublePropertyBase
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
ReadOnlyDoubleWrapper
This class provides a convenient class to define read-only properties.class
SimpleDoubleProperty
This class provides a full implementation of aProperty
wrapping adouble
value.Methods in javafx.beans.property that return DoubleProperty Modifier and Type Method Description static DoubleProperty
DoubleProperty. doubleProperty(Property<Double> property)
Returns aDoubleProperty
that wraps aProperty
and is bidirectionally bound to it. -
Uses of DoubleProperty in javafx.beans.property.adapter
Subclasses of DoubleProperty in javafx.beans.property.adapter Modifier and Type Class Description class
JavaBeanDoubleProperty
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
. -
Uses of DoubleProperty in javafx.css
Subclasses of DoubleProperty in javafx.css Modifier and Type Class Description class
SimpleStyleableDoubleProperty
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
StyleableDoubleProperty
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of DoubleProperty in javafx.scene
Methods in javafx.scene that return DoubleProperty Modifier and Type Method Description DoubleProperty
PointLight. constantAttenuationProperty()
The constant attenuation coefficient.DoubleProperty
Camera. farClipProperty()
Specifies the distance from the eye of the far clipping plane of thisCamera
in the eye coordinate space.DoubleProperty
PerspectiveCamera. fieldOfViewProperty()
Specifies the field of view angle of the camera's projection, measured in degrees.DoubleProperty
SubScene. heightProperty()
Defines the height of thisSubScene
DoubleProperty
Node. layoutXProperty()
Defines the x coordinate of the translation that is added to thisNode
's transform for the purpose of layout.DoubleProperty
Node. layoutYProperty()
Defines the y coordinate of the translation that is added to thisNode
's transform for the purpose of layout.DoubleProperty
PointLight. linearAttenuationProperty()
The linear attenuation coefficient.DoubleProperty
PointLight. maxRangeProperty()
The maximum range of thisPointLight
.DoubleProperty
Camera. nearClipProperty()
Specifies the distance from the eye of the near clipping plane of thisCamera
in the eye coordinate space.DoubleProperty
Node. opacityProperty()
Specifies how opaque (that is, solid) theNode
appears.DoubleProperty
PointLight. quadraticAttenuationProperty()
The quadratic attenuation coefficient.DoubleProperty
Node. rotateProperty()
Defines the angle of rotation about theNode
's center, measured in degrees.DoubleProperty
Node. scaleXProperty()
Defines the factor by which coordinates are scaled about the center of the object along the X axis of thisNode
.DoubleProperty
Node. scaleYProperty()
Defines the factor by which coordinates are scaled about the center of the object along the Y axis of thisNode
.DoubleProperty
Node. scaleZProperty()
Defines the factor by which coordinates are scaled about the center of the object along the Z axis of thisNode
.DoubleProperty
Node. translateXProperty()
Defines the x coordinate of the translation that is added to thisNode
's transform.DoubleProperty
Node. translateYProperty()
Defines the y coordinate of the translation that is added to thisNode
's transform.DoubleProperty
Node. translateZProperty()
Defines the Z coordinate of the translation that is added to the transformed coordinates of thisNode
.DoubleProperty
Node. viewOrderProperty()
Defines the rendering and picking order of thisNode
within its parent.DoubleProperty
SubScene. widthProperty()
Defines the width of thisSubScene
-
Uses of DoubleProperty in javafx.scene.canvas
Methods in javafx.scene.canvas that return DoubleProperty Modifier and Type Method Description DoubleProperty
Canvas. heightProperty()
Defines the height of the canvas.DoubleProperty
Canvas. widthProperty()
Defines the width of the canvas. -
Uses of DoubleProperty in javafx.scene.chart
Fields in javafx.scene.chart declared as DoubleProperty Modifier and Type Field Description protected DoubleProperty
ValueAxis. currentLowerBound
The current value for the lowerBound of this axis (minimum value).Methods in javafx.scene.chart that return DoubleProperty Modifier and Type Method Description DoubleProperty
BarChart. barGapProperty()
The gap to leave between bars in the same categoryDoubleProperty
BarChart. categoryGapProperty()
The gap to leave between bars in separate categoriesDoubleProperty
StackedBarChart. categoryGapProperty()
The gap to leave between bars in separate categoriesDoubleProperty
CategoryAxis. endMarginProperty()
The margin between the last tick mark and the axis endDoubleProperty
PieChart. labelLineLengthProperty()
The length of the line from the outside of the pie to the slice labels.DoubleProperty
ValueAxis. lowerBoundProperty()
The value for the lower bound of this axis (minimum value).DoubleProperty
ValueAxis. minorTickLengthProperty()
The length of minor tick mark lines.DoubleProperty
PieChart.Data. pieValueProperty()
The value of the pie sliceDoubleProperty
PieChart. startAngleProperty()
The angle to start the first pie slice atDoubleProperty
CategoryAxis. startMarginProperty()
The margin between the axis start and the first tick-markDoubleProperty
Axis. tickLabelGapProperty()
The gap between tick labels and the tick mark linesDoubleProperty
Axis. tickLabelRotationProperty()
Rotation in degrees of tick mark labels from their normal horizontal.DoubleProperty
Axis. tickLengthProperty()
The length of tick mark linesDoubleProperty
NumberAxis. tickUnitProperty()
The value between each major tick mark in data units.DoubleProperty
ValueAxis. upperBoundProperty()
The value for the upper bound of this axis (maximum value). -
Uses of DoubleProperty in javafx.scene.control
Methods in javafx.scene.control that return DoubleProperty Modifier and Type Method Description DoubleProperty
SpinnerValueFactory.DoubleSpinnerValueFactory. amountToStepByProperty()
Sets the amount to increment or decrement by, per step.DoubleProperty
ScrollBar. blockIncrementProperty()
The amount by which to adjust the scrollbar if the track of the bar is clicked.DoubleProperty
Slider. blockIncrementProperty()
The amount by which to adjust the slider if the track of the slider is clicked.DoubleProperty
ButtonBar. buttonMinWidthProperty()
Specifies the minimum width of all buttons placed in this button bar.DoubleProperty
ListView. fixedCellSizeProperty()
Specifies whether this control has cells that are a fixed height (of the specified value).DoubleProperty
TableView. fixedCellSizeProperty()
Specifies whether this control has cells that are a fixed height (of the specified value).DoubleProperty
TreeTableView. fixedCellSizeProperty()
Specifies whether this control has cells that are a fixed height (of the specified value).DoubleProperty
TreeView. fixedCellSizeProperty()
Specifies whether this control has cells that are a fixed height (of the specified value).DoubleProperty
Labeled. graphicTextGapProperty()
The amount of space between the graphic and textDoubleProperty
Tooltip. graphicTextGapProperty()
The amount of space between the graphic and textDoubleProperty
ScrollPane. hmaxProperty()
The maximum allowablehvalue
for this ScrollPane.DoubleProperty
ScrollPane. hminProperty()
The minimum allowablehvalue
for this ScrollPane.DoubleProperty
ScrollPane. hvalueProperty()
The current horizontal scroll position of the ScrollPane.DoubleProperty
Labeled. lineSpacingProperty()
Specifies the space in pixel between lines.DoubleProperty
Slider. majorTickUnitProperty()
The unit distance between major tick marks.DoubleProperty
PopupControl. maxHeightProperty()
Property for overriding the control's computed maximum height.DoubleProperty
ScrollBar. maxProperty()
The maximum value represented by thisScrollBar
.DoubleProperty
Slider. maxProperty()
The maximum value represented by this Slider.DoubleProperty
SpinnerValueFactory.DoubleSpinnerValueFactory. maxProperty()
Sets the maximum allowable value for this value factoryDoubleProperty
PopupControl. maxWidthProperty()
Property for overriding the control's computed maximum width.DoubleProperty
TableColumnBase. maxWidthProperty()
The maximum width the table column is permitted to be resized to.DoubleProperty
PopupControl. minHeightProperty()
Property for overriding the control's computed minimum height.DoubleProperty
ScrollBar. minProperty()
The minimum value represented by thisScrollBar
.DoubleProperty
Slider. minProperty()
The minimum value represented by this Slider.DoubleProperty
SpinnerValueFactory.DoubleSpinnerValueFactory. minProperty()
Sets the minimum allowable value for this value factoryDoubleProperty
ScrollPane. minViewportHeightProperty()
Specify the minimum height of the ScrollPane Viewport.DoubleProperty
ScrollPane. minViewportWidthProperty()
Specify the minimum width of the ScrollPane Viewport.DoubleProperty
PopupControl. minWidthProperty()
Property for overriding the control's computed minimum width.DoubleProperty
TableColumnBase. minWidthProperty()
The minimum width the table column is permitted to be resized to.DoubleProperty
SplitPane.Divider. positionProperty()
Represents the location where the divider should ideally be positioned, between 0.0 and 1.0 (inclusive).DoubleProperty
PopupControl. prefHeightProperty()
Property for overriding the control's computed preferred height.DoubleProperty
ScrollPane. prefViewportHeightProperty()
Specify the preferred height of the ScrollPane Viewport.DoubleProperty
ScrollPane. prefViewportWidthProperty()
Specify the preferred width of the ScrollPane Viewport.DoubleProperty
PopupControl. prefWidthProperty()
Property for overriding the control's computed preferred width.DoubleProperty
TableColumnBase. prefWidthProperty()
The preferred width of the TableColumn.DoubleProperty
ProgressIndicator. progressProperty()
The actual progress of the ProgressIndicator.DoubleProperty
TextArea. scrollLeftProperty()
The number of pixels by which the content is horizontally scrolled.DoubleProperty
TextArea. scrollTopProperty()
The number of pixels by which the content is vertically scrolled.DoubleProperty
TabPane. tabMaxHeightProperty()
The maximum height of the tabs in the TabPane.DoubleProperty
TabPane. tabMaxWidthProperty()
The maximum width of the tabs in the TabPane.DoubleProperty
TabPane. tabMinHeightProperty()
The minimum height of the tab.DoubleProperty
TabPane. tabMinWidthProperty()
The minimum width of the tabs in the TabPane.DoubleProperty
ScrollBar. unitIncrementProperty()
DoubleProperty
ScrollBar. valueProperty()
The current value represented by thisScrollBar
.DoubleProperty
Slider. valueProperty()
The current value represented by this Slider.DoubleProperty
ScrollBar. visibleAmountProperty()
Visible amount of the scrollbar's range, typically represented by the size of the scroll bar's thumb.DoubleProperty
ScrollPane. vmaxProperty()
The maximum allowablevvalue
for this ScrollPane.DoubleProperty
ScrollPane. vminProperty()
The minimum allowablevvalue
for this ScrollPane.DoubleProperty
ScrollPane. vvalueProperty()
The current vertical scroll position of the ScrollPane. -
Uses of DoubleProperty in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return DoubleProperty Modifier and Type Method Description DoubleProperty
VirtualFlow. fixedCellSizeProperty()
For optimisation purposes, some use cases can trade dynamic cell length for speed - if fixedCellSize is greater than zero we'll use that rather than determine it by querying the cell itself.DoubleProperty
TreeCellSkin. indentProperty()
The amount of space to multiply by the treeItem.level to get the left margin for this tree cell.DoubleProperty
TreeTableRowSkin. indentProperty()
The amount of space to multiply by the treeItem.level to get the left margin for this tree cell.DoubleProperty
VirtualFlow. positionProperty()
The position of the VirtualFlow within its list of cells.DoubleProperty
MenuBarSkin. spacingProperty()
Specifies the spacing between menu buttons on the MenuBar. -
Uses of DoubleProperty in javafx.scene.effect
Methods in javafx.scene.effect that return DoubleProperty Modifier and Type Method Description DoubleProperty
MotionBlur. angleProperty()
The angle of the motion effect, in degrees.DoubleProperty
Light.Distant. azimuthProperty()
The azimuth of the light.DoubleProperty
Reflection. bottomOpacityProperty()
The bottom opacity value, which is the opacity of the reflection at its bottom extreme.DoubleProperty
ColorAdjust. brightnessProperty()
The brightness adjustment value.DoubleProperty
InnerShadow. chokeProperty()
The choke of the shadow.DoubleProperty
ColorAdjust. contrastProperty()
The contrast adjustment value.DoubleProperty
Lighting. diffuseConstantProperty()
The diffuse constant.DoubleProperty
Light.Distant. elevationProperty()
The elevation of the light.DoubleProperty
Reflection. fractionProperty()
The fraction of the input that is visible in the reflection.DoubleProperty
BoxBlur. heightProperty()
The vertical dimension of the blur effect.DoubleProperty
ColorInput. heightProperty()
Sets the height of the region to be flooded, relative to the local coordinate space of the contentNode
.DoubleProperty
DropShadow. heightProperty()
The vertical size of the shadow blur kernel.DoubleProperty
InnerShadow. heightProperty()
The vertical size of the shadow blur kernel.DoubleProperty
Shadow. heightProperty()
The vertical size of the shadow blur kernel.DoubleProperty
ColorAdjust. hueProperty()
The hue adjustment value.DoubleProperty
Glow. levelProperty()
The level value, which controls the intensity of the glow effect.DoubleProperty
SepiaTone. levelProperty()
The level value, which controls the intensity of the sepia effect.DoubleProperty
PerspectiveTransform. llxProperty()
The x coordinate of the output location onto which the lower left corner of the source is mapped.DoubleProperty
PerspectiveTransform. llyProperty()
The y coordinate of the output location onto which the lower left corner of the source is mapped.DoubleProperty
PerspectiveTransform. lrxProperty()
The x coordinate of the output location onto which the lower right corner of the source is mapped.DoubleProperty
PerspectiveTransform. lryProperty()
The y coordinate of the output location onto which the lower right corner of the source is mapped.DoubleProperty
DisplacementMap. offsetXProperty()
The offset by which all x coordinate offset values in theFloatMap
are displaced after they are scaled.DoubleProperty
DropShadow. offsetXProperty()
The shadow offset in the x direction, in pixels.DoubleProperty
InnerShadow. offsetXProperty()
The shadow offset in the x direction, in pixels.DoubleProperty
DisplacementMap. offsetYProperty()
The offset by which all y coordinate offset values in theFloatMap
are displaced after they are scaled.DoubleProperty
DropShadow. offsetYProperty()
The shadow offset in the y direction, in pixels.DoubleProperty
InnerShadow. offsetYProperty()
The shadow offset in the y direction, in pixels.DoubleProperty
Blend. opacityProperty()
The opacity value, which is modulated with the top input prior to blending.DoubleProperty
Light.Spot. pointsAtXProperty()
The x coordinate of the direction vector for this light.DoubleProperty
Light.Spot. pointsAtYProperty()
The y coordinate of the direction vector for this light.DoubleProperty
Light.Spot. pointsAtZProperty()
The z coordinate of the direction vector for this light.DoubleProperty
DropShadow. radiusProperty()
The radius of the shadow blur kernel.DoubleProperty
GaussianBlur. radiusProperty()
The radius of the blur kernel.DoubleProperty
InnerShadow. radiusProperty()
The radius of the shadow blur kernel.DoubleProperty
MotionBlur. radiusProperty()
The radius of the blur kernel.DoubleProperty
Shadow. radiusProperty()
The radius of the shadow blur kernel.DoubleProperty
ColorAdjust. saturationProperty()
The saturation adjustment value.DoubleProperty
DisplacementMap. scaleXProperty()
The scale factor by which all x coordinate offset values in theFloatMap
are multiplied.DoubleProperty
DisplacementMap. scaleYProperty()
The scale factor by which all y coordinate offset values in theFloatMap
are multiplied.DoubleProperty
Lighting. specularConstantProperty()
The specular constant.DoubleProperty
Light.Spot. specularExponentProperty()
The specular exponent, which controls the focus of this light source.DoubleProperty
Lighting. specularExponentProperty()
The specular exponent.DoubleProperty
DropShadow. spreadProperty()
The spread of the shadow.DoubleProperty
Lighting. surfaceScaleProperty()
The surface scale factor.DoubleProperty
Bloom. thresholdProperty()
The threshold value controls the minimum luminosity value of the pixels that will be made to glow.DoubleProperty
Reflection. topOffsetProperty()
The top offset adjustment, which is the distance between the bottom of the input and the top of the reflection.DoubleProperty
Reflection. topOpacityProperty()
The top opacity value, which is the opacity of the reflection at its top extreme.DoubleProperty
PerspectiveTransform. ulxProperty()
The x coordinate of the output location onto which the upper left corner of the source is mapped.DoubleProperty
PerspectiveTransform. ulyProperty()
The y coordinate of the output location onto which the upper left corner of the source is mapped.DoubleProperty
PerspectiveTransform. urxProperty()
The x coordinate of the output location onto which the upper right corner of the source is mapped.DoubleProperty
PerspectiveTransform. uryProperty()
The y coordinate of the output location onto which the upper right corner of the source is mapped.DoubleProperty
BoxBlur. widthProperty()
The horizontal dimension of the blur effect.DoubleProperty
ColorInput. widthProperty()
Sets the width of the region to be flooded, relative to the local coordinate space of the contentNode
.DoubleProperty
DropShadow. widthProperty()
The horizontal size of the shadow blur kernel.DoubleProperty
InnerShadow. widthProperty()
The horizontal size of the shadow blur kernel.DoubleProperty
Shadow. widthProperty()
The horizontal size of the shadow blur kernel.DoubleProperty
ColorInput. xProperty()
Sets the x location of the region to be flooded, relative to the local coordinate space of the contentNode
.DoubleProperty
ImageInput. xProperty()
Sets the x location of the source image, relative to the local coordinate space of the contentNode
.DoubleProperty
Light.Point. xProperty()
The x coordinate of the light position.DoubleProperty
ColorInput. yProperty()
Sets the y location of the region to be flooded, relative to the local coordinate space of the contentNode
.DoubleProperty
ImageInput. yProperty()
Sets the y location of the source image, relative to the local coordinate space of the contentNode
.DoubleProperty
Light.Point. yProperty()
The y coordinate of the light position.DoubleProperty
Light.Point. zProperty()
The z coordinate of the light position. -
Uses of DoubleProperty in javafx.scene.image
Methods in javafx.scene.image that return DoubleProperty Modifier and Type Method Description DoubleProperty
ImageView. fitHeightProperty()
The height of the bounding box within which the source image is resized as necessary to fit.DoubleProperty
ImageView. fitWidthProperty()
The width of the bounding box within which the source image is resized as necessary to fit.DoubleProperty
ImageView. xProperty()
The current x coordinate of theImageView
origin.DoubleProperty
ImageView. yProperty()
The current y coordinate of theImageView
origin. -
Uses of DoubleProperty in javafx.scene.layout
Methods in javafx.scene.layout that return DoubleProperty Modifier and Type Method Description DoubleProperty
FlowPane. hgapProperty()
The amount of horizontal space between each node in a horizontal flowpane or the space between columns in a vertical flowpane.DoubleProperty
GridPane. hgapProperty()
The width of the horizontal gaps between columns.DoubleProperty
TilePane. hgapProperty()
The amount of horizontal space between each tile in a row.DoubleProperty
Region. maxHeightProperty()
Property for overriding the region's computed maximum height.DoubleProperty
RowConstraints. maxHeightProperty()
The maximum height for the row.DoubleProperty
ColumnConstraints. maxWidthProperty()
The maximum width for the column.DoubleProperty
Region. maxWidthProperty()
Property for overriding the region's computed maximum width.DoubleProperty
Region. minHeightProperty()
Property for overriding the region's computed minimum height.DoubleProperty
RowConstraints. minHeightProperty()
The minimum height for the row.DoubleProperty
ColumnConstraints. minWidthProperty()
The minimum width for the column.DoubleProperty
Region. minWidthProperty()
Property for overriding the region's computed minimum width.DoubleProperty
RowConstraints. percentHeightProperty()
The height percentage of the row.DoubleProperty
ColumnConstraints. percentWidthProperty()
The width percentage of the column.DoubleProperty
Region. prefHeightProperty()
Property for overriding the region's computed preferred height.DoubleProperty
RowConstraints. prefHeightProperty()
The preferred height for the row.DoubleProperty
TilePane. prefTileHeightProperty()
The preferred height of each tile.DoubleProperty
TilePane. prefTileWidthProperty()
The preferred width of each tile.DoubleProperty
ColumnConstraints. prefWidthProperty()
The preferred width for the column.DoubleProperty
Region. prefWidthProperty()
Property for overriding the region's computed preferred width.DoubleProperty
FlowPane. prefWrapLengthProperty()
The preferred width where content should wrap in a horizontal flowpane or the preferred height where content should wrap in a vertical flowpane.DoubleProperty
HBox. spacingProperty()
The amount of horizontal space between each child in the hbox.DoubleProperty
VBox. spacingProperty()
The amount of vertical space between each child in the vbox.DoubleProperty
FlowPane. vgapProperty()
The amount of vertical space between each node in a vertical flowpane or the space between rows in a horizontal flowpane.DoubleProperty
GridPane. vgapProperty()
The height of the vertical gaps between rows.DoubleProperty
TilePane. vgapProperty()
The amount of vertical space between each tile in a column. -
Uses of DoubleProperty in javafx.scene.media
Methods in javafx.scene.media that return DoubleProperty Modifier and Type Method Description DoubleProperty
MediaPlayer. audioSpectrumIntervalProperty()
The interval between spectrum updates in seconds.DoubleProperty
AudioClip. balanceProperty()
The relative left and right volume levels of the clip.DoubleProperty
MediaPlayer. balanceProperty()
The balance, or left-right setting, of the audio output.DoubleProperty
EqualizerBand. bandwidthProperty()
Bandwidth of the band in Hertz.DoubleProperty
EqualizerBand. centerFrequencyProperty()
Center frequency of the band in Hertz.DoubleProperty
MediaView. fitHeightProperty()
Determines the height of the bounding box within which the source media is resized as necessary to fit.DoubleProperty
MediaView. fitWidthProperty()
Determines the width of the bounding box within which the source media is resized as necessary to fit.DoubleProperty
EqualizerBand. gainProperty()
The gain to be applied to the frequencies of this band.DoubleProperty
AudioClip. panProperty()
The relative "center" of the clip.DoubleProperty
AudioClip. rateProperty()
The relative rate at which the clip is played.DoubleProperty
MediaPlayer. rateProperty()
The rate at which the media should be played.DoubleProperty
AudioClip. volumeProperty()
The relative volume level at which the clip is played.DoubleProperty
MediaPlayer. volumeProperty()
The volume at which the media should be played.DoubleProperty
MediaView. xProperty()
Defines the current x coordinate of theMediaView
origin.DoubleProperty
MediaView. yProperty()
Defines the current y coordinate of theMediaView
origin. -
Uses of DoubleProperty in javafx.scene.paint
Methods in javafx.scene.paint that return DoubleProperty Modifier and Type Method Description DoubleProperty
PhongMaterial. specularPowerProperty()
The specular power of thisPhongMaterial
. -
Uses of DoubleProperty in javafx.scene.shape
Methods in javafx.scene.shape that return DoubleProperty Modifier and Type Method Description DoubleProperty
Rectangle. arcHeightProperty()
Defines the vertical diameter of the arc at the four corners of the rectangle.DoubleProperty
Rectangle. arcWidthProperty()
Defines the horizontal diameter of the arc at the four corners of the rectangle.DoubleProperty
Arc. centerXProperty()
Defines the X coordinate of the center point of the arc.DoubleProperty
Circle. centerXProperty()
Defines the horizontal position of the center of the circle in pixels.DoubleProperty
Ellipse. centerXProperty()
Defines the horizontal position of the center of the ellipse in pixels.DoubleProperty
Arc. centerYProperty()
Defines the Y coordinate of the center point of the arc.DoubleProperty
Circle. centerYProperty()
Defines the vertical position of the center of the circle in pixels.DoubleProperty
Ellipse. centerYProperty()
Defines the vertical position of the center of the ellipse in pixels.DoubleProperty
CubicCurve. controlX1Property()
Defines the X coordinate of the first control point of the cubic curve segment.DoubleProperty
CubicCurveTo. controlX1Property()
Defines the X coordinate of the first Bézier control point.DoubleProperty
CubicCurve. controlX2Property()
Defines the X coordinate of the second control point of the cubic curve segment.DoubleProperty
CubicCurveTo. controlX2Property()
Defines the X coordinate of the second Bézier control point.DoubleProperty
QuadCurve. controlXProperty()
Defines the X coordinate of the control point of the quadratic curve segment.DoubleProperty
QuadCurveTo. controlXProperty()
Defines the X coordinate of the quadratic control point.DoubleProperty
CubicCurve. controlY1Property()
Defines the Y coordinate of the first control point of the cubic curve segment.DoubleProperty
CubicCurveTo. controlY1Property()
Defines the Y coordinate of the first Bézier control point.DoubleProperty
CubicCurve. controlY2Property()
Defines the Y coordinate of the second control point of the cubic curve segment.DoubleProperty
CubicCurveTo. controlY2Property()
Defines the Y coordinate of the second Bézier control point.DoubleProperty
QuadCurve. controlYProperty()
Defines the Y coordinate of the control point of the quadratic curve segment.DoubleProperty
QuadCurveTo. controlYProperty()
Defines the Y coordinate of the quadratic control point.DoubleProperty
Box. depthProperty()
Defines the depth or the Z dimension of the Box.DoubleProperty
CubicCurve. endXProperty()
Defines the X coordinate of the end point of the cubic curve segment.DoubleProperty
Line. endXProperty()
The X coordinate of the end point of the line segment.DoubleProperty
QuadCurve. endXProperty()
Defines the X coordinate of the end point of the quadratic curve segment.DoubleProperty
CubicCurve. endYProperty()
Defines the Y coordinate of the end point of the cubic curve segment.DoubleProperty
Line. endYProperty()
The Y coordinate of the end point of the line segment.DoubleProperty
QuadCurve. endYProperty()
Defines the Y coordinate of the end point of the quadratic curve segment.DoubleProperty
Box. heightProperty()
Defines the height or the Y dimension of the Box.DoubleProperty
Cylinder. heightProperty()
Defines the height or the Y dimension of the Cylinder.DoubleProperty
Rectangle. heightProperty()
Defines the height of the rectangle.DoubleProperty
Arc. lengthProperty()
Defines the angular extent of the arc in degrees.DoubleProperty
Circle. radiusProperty()
Defines the radius of the circle in pixels.DoubleProperty
Cylinder. radiusProperty()
Defines the radius in the Z plane of the Cylinder.DoubleProperty
Sphere. radiusProperty()
Defines the radius of the Sphere.DoubleProperty
Arc. radiusXProperty()
Defines the overall width (horizontal radius) of the full ellipse of which this arc is a partial section.DoubleProperty
ArcTo. radiusXProperty()
The horizontal radius to use for the arc.DoubleProperty
Ellipse. radiusXProperty()
Defines the width of the ellipse in pixels.DoubleProperty
Arc. radiusYProperty()
Defines the overall height (vertical radius) of the full ellipse of which this arc is a partial section.DoubleProperty
ArcTo. radiusYProperty()
The vertical radius to use for the arc.DoubleProperty
Ellipse. radiusYProperty()
Defines the height of the ellipse in pixels.DoubleProperty
Arc. startAngleProperty()
Defines the starting angle of the arc in degrees.DoubleProperty
CubicCurve. startXProperty()
Defines the X coordinate of the start point of the cubic curve segment.DoubleProperty
Line. startXProperty()
The X coordinate of the start point of the line segment.DoubleProperty
QuadCurve. startXProperty()
Defines the X coordinate of the start point of the quadratic curve segment.DoubleProperty
CubicCurve. startYProperty()
Defines the Y coordinate of the start point of the cubic curve segment.DoubleProperty
Line. startYProperty()
The Y coordinate of the start point of the line segment.DoubleProperty
QuadCurve. startYProperty()
Defines the Y coordinate of the start point of the quadratic curve segment.DoubleProperty
Shape. strokeDashOffsetProperty()
Defines a distance specified in user coordinates that represents an offset into the dashing pattern.DoubleProperty
Shape. strokeMiterLimitProperty()
Defines the limit for theStrokeLineJoin.MITER
line join style.DoubleProperty
Shape. strokeWidthProperty()
Defines a square pen line width.DoubleProperty
Box. widthProperty()
Defines the width or the X dimension of the Box.DoubleProperty
Rectangle. widthProperty()
Defines the width of the rectangle.DoubleProperty
ArcTo. XAxisRotationProperty()
The x-axis rotation in degrees.DoubleProperty
ArcTo. xProperty()
The x coordinate to arc to.DoubleProperty
CubicCurveTo. xProperty()
Defines the X coordinate of the final end point.DoubleProperty
HLineTo. xProperty()
Defines the X coordinate.DoubleProperty
LineTo. xProperty()
Defines the X coordinate.DoubleProperty
MoveTo. xProperty()
Defines the specified X coordinate.DoubleProperty
QuadCurveTo. xProperty()
Defines the X coordinate of the final end point.DoubleProperty
Rectangle. xProperty()
Defines the X coordinate of the upper-left corner of the rectangle.DoubleProperty
ArcTo. yProperty()
The y coordinate to arc to.DoubleProperty
CubicCurveTo. yProperty()
Defines the Y coordinate of the final end point.DoubleProperty
LineTo. yProperty()
Defines the Y coordinate.DoubleProperty
MoveTo. yProperty()
Defines the specified Y coordinate.DoubleProperty
QuadCurveTo. yProperty()
Defines the Y coordinate of the final end point.DoubleProperty
Rectangle. yProperty()
Defines the Y coordinate of the upper-left corner of the rectangle.DoubleProperty
VLineTo. yProperty()
Defines the Y coordinate. -
Uses of DoubleProperty in javafx.scene.text
Methods in javafx.scene.text that return DoubleProperty Modifier and Type Method Description DoubleProperty
Text. lineSpacingProperty()
Defines the vertical space in pixel between lines.DoubleProperty
TextFlow. lineSpacingProperty()
Defines the vertical space in pixel between lines.DoubleProperty
Text. wrappingWidthProperty()
Defines a width constraint for the text in user space coordinates.DoubleProperty
Text. xProperty()
Defines the X coordinate of text origin.DoubleProperty
Text. yProperty()
Defines the Y coordinate of text origin. -
Uses of DoubleProperty in javafx.scene.transform
Methods in javafx.scene.transform that return DoubleProperty Modifier and Type Method Description DoubleProperty
Rotate. angleProperty()
Defines the angle of rotation measured in degrees.DoubleProperty
Affine. mxxProperty()
Defines the X coordinate scaling element of the 3x4 matrix.DoubleProperty
Affine. mxyProperty()
Defines the XY coordinate element of the 3x4 matrix.DoubleProperty
Affine. mxzProperty()
Defines the XZ coordinate element of the 3x4 matrix.DoubleProperty
Affine. myxProperty()
Defines the YX coordinate element of the 3x4 matrix.DoubleProperty
Affine. myyProperty()
Defines the Y coordinate scaling element of the 3x4 matrix.DoubleProperty
Affine. myzProperty()
Defines the YZ coordinate element of the 3x4 matrix.DoubleProperty
Affine. mzxProperty()
Defines the ZX coordinate element of the 3x4 matrix.DoubleProperty
Affine. mzyProperty()
Defines the ZY coordinate element of the 3x4 matrix.DoubleProperty
Affine. mzzProperty()
Defines the Z coordinate scaling element of the 3x4 matrix.DoubleProperty
Rotate. pivotXProperty()
Defines the X coordinate of the rotation pivot point.DoubleProperty
Scale. pivotXProperty()
Defines the X coordinate about which point the scale occurs.DoubleProperty
Shear. pivotXProperty()
Defines the X coordinate of the shear pivot point.DoubleProperty
Rotate. pivotYProperty()
Defines the Y coordinate of the rotation pivot point.DoubleProperty
Scale. pivotYProperty()
Defines the Y coordinate about which point the scale occurs.DoubleProperty
Shear. pivotYProperty()
Defines the Y coordinate of the shear pivot point.DoubleProperty
Rotate. pivotZProperty()
Defines the Z coordinate of the rotation pivot point.DoubleProperty
Scale. pivotZProperty()
Defines the Z coordinate about which point the scale occurs.DoubleProperty
Affine. txProperty()
Defines the X coordinate translation element of the 3x4 matrix.DoubleProperty
Affine. tyProperty()
Defines the Y coordinate translation element of the 3x4 matrix.DoubleProperty
Affine. tzProperty()
Defines the Z coordinate translation element of the 3x4 matrix.DoubleProperty
Scale. xProperty()
Defines the factor by which coordinates are scaled along the X axis direction.DoubleProperty
Shear. xProperty()
Defines the multiplier by which coordinates are shifted in the direction of the positive X axis as a factor of their Y coordinate.DoubleProperty
Translate. xProperty()
Defines the distance by which coordinates are translated in the X axis directionDoubleProperty
Scale. yProperty()
Defines the factor by which coordinates are scaled along the Y axis direction.DoubleProperty
Shear. yProperty()
Defines the multiplier by which coordinates are shifted in the direction of the positive Y axis as a factor of their X coordinate.DoubleProperty
Translate. yProperty()
Defines the distance by which coordinates are translated in the Y axis directionDoubleProperty
Scale. zProperty()
Defines the factor by which coordinates are scaled along the Z axis direction.DoubleProperty
Translate. zProperty()
Defines the distance by which coordinates are translated in the Z axis direction -
Uses of DoubleProperty in javafx.scene.web
Methods in javafx.scene.web that return DoubleProperty Modifier and Type Method Description DoubleProperty
WebView. fontScaleProperty()
Specifies scale factor applied to font.DoubleProperty
WebView. maxHeightProperty()
Maximum height property.DoubleProperty
WebView. maxWidthProperty()
Maximum width property.DoubleProperty
WebView. minHeightProperty()
Minimum height property.DoubleProperty
WebView. minWidthProperty()
Minimum width property.DoubleProperty
WebView. prefHeightProperty()
Preferred height property.DoubleProperty
WebView. prefWidthProperty()
Preferred width property.DoubleProperty
WebView. zoomProperty()
The current zoom factor applied to the entire page contents. -
Uses of DoubleProperty in javafx.stage
Methods in javafx.stage that return DoubleProperty Modifier and Type Method Description DoubleProperty
Stage. maxHeightProperty()
Defines the maximum height of thisStage
.DoubleProperty
Stage. maxWidthProperty()
Defines the maximum width of thisStage
.DoubleProperty
Stage. minHeightProperty()
Defines the minimum height of thisStage
.DoubleProperty
Stage. minWidthProperty()
Defines the minimum width of thisStage
.DoubleProperty
Window. opacityProperty()
Defines the opacity of theWindow
as a value between 0.0 and 1.0.DoubleProperty
Window. renderScaleXProperty()
The horizontal scale that theWindow
will use when rendering itsScene
to the rendering buffer.DoubleProperty
Window. renderScaleYProperty()
The vertical scale that theWindow
will use when rendering itsScene
to the rendering buffer.