Uses of Class
javafx.scene.effect.BlendMode
Package | Description |
---|---|
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.effect |
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
|
-
Uses of BlendMode in javafx.scene
Methods in javafx.scene that return BlendMode Modifier and Type Method Description BlendMode
Node. getBlendMode()
Gets the value of the property blendMode.Methods in javafx.scene that return types with arguments of type BlendMode Modifier and Type Method Description ObjectProperty<BlendMode>
Node. blendModeProperty()
TheBlendMode
used to blend this individual node into the scene behind it.Methods in javafx.scene with parameters of type BlendMode Modifier and Type Method Description void
Node. setBlendMode(BlendMode value)
Sets the value of the property blendMode. -
Uses of BlendMode in javafx.scene.canvas
Methods in javafx.scene.canvas that return BlendMode Modifier and Type Method Description BlendMode
GraphicsContext. getGlobalBlendMode()
Gets the global blend mode.Methods in javafx.scene.canvas with parameters of type BlendMode Modifier and Type Method Description void
GraphicsContext. setGlobalBlendMode(BlendMode op)
Sets the global blend mode. -
Uses of BlendMode in javafx.scene.effect
Methods in javafx.scene.effect that return BlendMode Modifier and Type Method Description BlendMode
Blend. getMode()
Gets the value of the property mode.static BlendMode
BlendMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static BlendMode[]
BlendMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in javafx.scene.effect that return types with arguments of type BlendMode Modifier and Type Method Description ObjectProperty<BlendMode>
Blend. modeProperty()
TheBlendMode
used to blend the two inputs together.Methods in javafx.scene.effect with parameters of type BlendMode Modifier and Type Method Description void
Blend. setMode(BlendMode value)
Sets the value of the property mode.Constructors in javafx.scene.effect with parameters of type BlendMode Constructor Description Blend(BlendMode mode)
Creates a new instance of Blend with the specified mode.Blend(BlendMode mode, Effect bottomInput, Effect topInput)
Creates a new instance of Blend with the specified mode and bottom and top inputs.