Package | Description |
---|---|
com.sun.javafx.tk | |
javafx.scene.effect |
Provides the set of classes for attaching graphical filter effects to JavaFX Scene Graph Nodes.
|
Modifier and Type | Method and Description |
---|---|
AbstractShadow.ShadowMode |
Toolkit.toShadowMode(BlurType blurType) |
Modifier and Type | Method and Description |
---|---|
BlurType |
Shadow.getBlurType() |
BlurType |
InnerShadow.getBlurType() |
BlurType |
DropShadow.getBlurType() |
static BlurType |
BlurType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlurType[] |
BlurType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<BlurType> |
Shadow.blurTypeProperty() |
ObjectProperty<BlurType> |
InnerShadow.blurTypeProperty() |
ObjectProperty<BlurType> |
DropShadow.blurTypeProperty() |
Modifier and Type | Method and Description |
---|---|
B |
ShadowBuilder.blurType(BlurType x)
Deprecated.
Set the value of the
blurType property for the instance constructed by this builder. |
B |
InnerShadowBuilder.blurType(BlurType x)
Deprecated.
Set the value of the
blurType property for the instance constructed by this builder. |
B |
DropShadowBuilder.blurType(BlurType x)
Deprecated.
Set the value of the
blurType property for the instance constructed by this builder. |
void |
Shadow.setBlurType(BlurType value) |
void |
InnerShadow.setBlurType(BlurType value) |
void |
DropShadow.setBlurType(BlurType value) |
Constructor and Description |
---|
DropShadow(BlurType blurType,
Color color,
double radius,
double spread,
double offsetX,
double offsetY)
Creates a new instance of DropShadow with the specified blurType, color,
radius, spread, offsetX and offsetY.
|
InnerShadow(BlurType blurType,
Color color,
double radius,
double choke,
double offsetX,
double offsetY)
Creates a new instance of InnerShadow with the specified blurType, color,
radius, spread, offsetX and offsetY.
|
Shadow(BlurType blurType,
Color color,
double radius)
Creates a new instance of Shadow with the specified blurType, color,
radius.
|
Copyright © 2020. All rights reserved.