* #### mode
public final [ObjectProperty](../../../javafx/beans/property/ObjectProperty.html "class in javafx.beans.property")<[BlendMode](../../../javafx/scene/effect/BlendMode.html "enum in javafx.scene.effect")> modeProperty
The `BlendMode` used to blend the two inputs together.
Min: n/a
Max: n/a
Default: BlendMode.SRC_OVER
Identity: n/a
Default value:
SRC\_OVER
See Also:
[getMode()](../../../javafx/scene/effect/Blend.html#getMode%28%29), [setMode(BlendMode)](../../../javafx/scene/effect/Blend.html#setMode%28javafx.scene.effect.BlendMode%29)
* #### opacity
public final [DoubleProperty](../../../javafx/beans/property/DoubleProperty.html "class in javafx.beans.property") opacityProperty
The opacity value, which is modulated with the top input prior to blending.
Min: 0.0
Max: 1.0
Default: 1.0
Identity: 1.0
Default value:
1.0
See Also:
[getOpacity()](../../../javafx/scene/effect/Blend.html#getOpacity%28%29), [setOpacity(double)](../../../javafx/scene/effect/Blend.html#setOpacity%28double%29)
* #### bottomInput
public final [ObjectProperty](../../../javafx/beans/property/ObjectProperty.html "class in javafx.beans.property")<[Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect")> bottomInputProperty
The bottom input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
See Also:
[getBottomInput()](../../../javafx/scene/effect/Blend.html#getBottomInput%28%29), [setBottomInput(Effect)](../../../javafx/scene/effect/Blend.html#setBottomInput%28javafx.scene.effect.Effect%29)
* #### topInput
public final [ObjectProperty](../../../javafx/beans/property/ObjectProperty.html "class in javafx.beans.property")<[Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect")> topInputProperty
The top input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
See Also:
[getTopInput()](../../../javafx/scene/effect/Blend.html#getTopInput%28%29), [setTopInput(Effect)](../../../javafx/scene/effect/Blend.html#setTopInput%28javafx.scene.effect.Effect%29)
Constructor Detail
* #### Blend
public Blend()
Creates a new instance of Blend with default parameters.
* #### Blend
public Blend([BlendMode](../../../javafx/scene/effect/BlendMode.html "enum in javafx.scene.effect") mode)
Creates a new instance of Blend with the specified mode.
Parameters:
`mode` \- the `BlendMode` used to blend the two inputs together
Since:
JavaFX 2.1
* #### Blend
public Blend([BlendMode](../../../javafx/scene/effect/BlendMode.html "enum in javafx.scene.effect") mode,
[Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect") bottomInput,
[Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect") topInput)
Creates a new instance of Blend with the specified mode and bottom and top inputs.
Parameters:
`mode` \- the `BlendMode` used to blend the two inputs together
`bottomInput` \- the bottom input for this `Blend` operation
`topInput` \- the top input for this `Blend` operation
Since:
JavaFX 2.1
Method Detail
* #### setMode
public final void setMode([BlendMode](../../../javafx/scene/effect/BlendMode.html "enum in javafx.scene.effect") value)
Sets the value of the property mode.
Property description:
The `BlendMode` used to blend the two inputs together.
Min: n/a
Max: n/a
Default: BlendMode.SRC_OVER
Identity: n/a
Default value:
SRC\_OVER
* #### getMode
public final [BlendMode](../../../javafx/scene/effect/BlendMode.html "enum in javafx.scene.effect") getMode()
Gets the value of the property mode.
Property description:
The `BlendMode` used to blend the two inputs together.
Min: n/a
Max: n/a
Default: BlendMode.SRC_OVER
Identity: n/a
Default value:
SRC\_OVER
* #### modeProperty
public final [ObjectProperty](../../../javafx/beans/property/ObjectProperty.html "class in javafx.beans.property")<[BlendMode](../../../javafx/scene/effect/BlendMode.html "enum in javafx.scene.effect")> modeProperty()
The `BlendMode` used to blend the two inputs together.
Min: n/a
Max: n/a
Default: BlendMode.SRC_OVER
Identity: n/a
Default value:
SRC\_OVER
See Also:
[getMode()](../../../javafx/scene/effect/Blend.html#getMode%28%29), [setMode(BlendMode)](../../../javafx/scene/effect/Blend.html#setMode%28javafx.scene.effect.BlendMode%29)
* #### setOpacity
public final void setOpacity(double value)
Sets the value of the property opacity.
Property description:
The opacity value, which is modulated with the top input prior to blending.
Min: 0.0
Max: 1.0
Default: 1.0
Identity: 1.0
Default value:
1.0
* #### getOpacity
public final double getOpacity()
Gets the value of the property opacity.
Property description:
The opacity value, which is modulated with the top input prior to blending.
Min: 0.0
Max: 1.0
Default: 1.0
Identity: 1.0
Default value:
1.0
* #### opacityProperty
public final [DoubleProperty](../../../javafx/beans/property/DoubleProperty.html "class in javafx.beans.property") opacityProperty()
The opacity value, which is modulated with the top input prior to blending.
Min: 0.0
Max: 1.0
Default: 1.0
Identity: 1.0
Default value:
1.0
See Also:
[getOpacity()](../../../javafx/scene/effect/Blend.html#getOpacity%28%29), [setOpacity(double)](../../../javafx/scene/effect/Blend.html#setOpacity%28double%29)
* #### setBottomInput
public final void setBottomInput([Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect") value)
Sets the value of the property bottomInput.
Property description:
The bottom input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
* #### getBottomInput
public final [Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect") getBottomInput()
Gets the value of the property bottomInput.
Property description:
The bottom input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
* #### bottomInputProperty
public final [ObjectProperty](../../../javafx/beans/property/ObjectProperty.html "class in javafx.beans.property")<[Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect")> bottomInputProperty()
The bottom input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
See Also:
[getBottomInput()](../../../javafx/scene/effect/Blend.html#getBottomInput%28%29), [setBottomInput(Effect)](../../../javafx/scene/effect/Blend.html#setBottomInput%28javafx.scene.effect.Effect%29)
* #### setTopInput
public final void setTopInput([Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect") value)
Sets the value of the property topInput.
Property description:
The top input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
* #### getTopInput
public final [Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect") getTopInput()
Gets the value of the property topInput.
Property description:
The top input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
* #### topInputProperty
public final [ObjectProperty](../../../javafx/beans/property/ObjectProperty.html "class in javafx.beans.property")<[Effect](../../../javafx/scene/effect/Effect.html "class in javafx.scene.effect")> topInputProperty()
The top input for this `Blend` operation. If set to `null`, or left unspecified, a graphical image of the `Node` to which the `Effect` is attached will be used as the input.
Default value:
null
See Also:
[getTopInput()](../../../javafx/scene/effect/Blend.html#getTopInput%28%29), [setTopInput(Effect)](../../../javafx/scene/effect/Blend.html#setTopInput%28javafx.scene.effect.Effect%29)