- java.lang.Object
- 
- javafx.scene.effect.Effect
- 
- javafx.scene.effect.DropShadow
 
 
- 
 public class DropShadow extends Effect A high-level effect that renders a shadow of the given content behind the content with the specified color, radius, and offset.Example: DropShadow dropShadow = new DropShadow(); dropShadow.setRadius(5.0); dropShadow.setOffsetX(3.0); dropShadow.setOffsetY(3.0); dropShadow.setColor(Color.color(0.4, 0.5, 0.5)); Text text = new Text(); text.setEffect(dropShadow); text.setCache(true); text.setX(10.0); text.setY(70.0); text.setFill(Color.web("0x3b596d")); text.setText("JavaFX drop shadow..."); text.setFont(Font.font(null, FontWeight.BOLD, 40)); DropShadow dropShadow2 = new DropShadow(); dropShadow2.setOffsetX(6.0); dropShadow2.setOffsetY(4.0); Circle circle = new Circle(); circle.setEffect(dropShadow2); circle.setCenterX(50.0); circle.setCenterY(125.0); circle.setRadius(30.0); circle.setFill(Color.STEELBLUE); circle.setCache(true);The code above produces the following:   - Since:
- JavaFX 2.0
 
- 
- 
Property SummaryProperties Type Property Description ObjectProperty<BlurType>blurTypeThe algorithm used to blur the shadow.ObjectProperty<Color>colorThe shadowColor.DoublePropertyheightThe vertical size of the shadow blur kernel.ObjectProperty<Effect>inputThe input for thisEffect.DoublePropertyoffsetXThe shadow offset in the x direction, in pixels.DoublePropertyoffsetYThe shadow offset in the y direction, in pixels.DoublePropertyradiusThe radius of the shadow blur kernel.DoublePropertyspreadThe spread of the shadow.DoublePropertywidthThe horizontal size of the shadow blur kernel.
 - 
Constructor SummaryConstructors Constructor Description DropShadow()Creates a new instance of DropShadow with default parameters.DropShadow(double radius, double offsetX, double offsetY, Color color)Creates a new instance of DropShadow with the specified radius, offsetX, offsetY and color.DropShadow(double radius, Color color)Creates a new instance of DropShadow with specified radius and color.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.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectProperty<BlurType>blurTypeProperty()The algorithm used to blur the shadow.ObjectProperty<Color>colorProperty()The shadowColor.BlurTypegetBlurType()Gets the value of the property blurType.ColorgetColor()Gets the value of the property color.doublegetHeight()Gets the value of the property height.EffectgetInput()Gets the value of the property input.doublegetOffsetX()Gets the value of the property offsetX.doublegetOffsetY()Gets the value of the property offsetY.doublegetRadius()Gets the value of the property radius.doublegetSpread()Gets the value of the property spread.doublegetWidth()Gets the value of the property width.DoublePropertyheightProperty()The vertical size of the shadow blur kernel.ObjectProperty<Effect>inputProperty()The input for thisEffect.DoublePropertyoffsetXProperty()The shadow offset in the x direction, in pixels.DoublePropertyoffsetYProperty()The shadow offset in the y direction, in pixels.DoublePropertyradiusProperty()The radius of the shadow blur kernel.voidsetBlurType(BlurType value)Sets the value of the property blurType.voidsetColor(Color value)Sets the value of the property color.voidsetHeight(double value)Sets the value of the property height.voidsetInput(Effect value)Sets the value of the property input.voidsetOffsetX(double value)Sets the value of the property offsetX.voidsetOffsetY(double value)Sets the value of the property offsetY.voidsetRadius(double value)Sets the value of the property radius.voidsetSpread(double value)Sets the value of the property spread.voidsetWidth(double value)Sets the value of the property width.DoublePropertyspreadProperty()The spread of the shadow.DoublePropertywidthProperty()The horizontal size of the shadow blur kernel.
 
- 
- 
- 
Property Detail- 
inputpublic final ObjectProperty<Effect> inputProperty The input for thisEffect. If set tonull, or left unspecified, a graphical image of theNodeto which theEffectis attached will be used as the input.- Default value:
- null
- See Also:
- getInput(),- setInput(Effect)
 
 - 
radiuspublic final DoubleProperty radiusProperty The radius of the shadow blur kernel. This attribute controls the distance that the shadow is spread to each side of the source pixels. Setting the radius is equivalent to setting both thewidthandheightattributes to a value of(2 * radius + 1).Min: 0.0 Max: 127.0 Default: 10.0 Identity: 0.0- Default value:
- 10.0
- See Also:
- getRadius(),- setRadius(double)
 
 - 
widthpublic final DoubleProperty widthProperty The horizontal size of the shadow blur kernel. This attribute controls the horizontal size of the total area over which the shadow of a single pixel is distributed by the blur algorithm. Values less than1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0- Default value:
- 21.0
- See Also:
- getWidth(),- setWidth(double)
 
 - 
heightpublic final DoubleProperty heightProperty The vertical size of the shadow blur kernel. This attribute controls the vertical size of the total area over which the shadow of a single pixel is distributed by the blur algorithm. Values less than1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0- Default value:
- 21.0
- See Also:
- getHeight(),- setHeight(double)
 
 - 
blurTypepublic final ObjectProperty<BlurType> blurTypeProperty The algorithm used to blur the shadow.Min: n/a Max: n/a Default: BlurType.THREE_PASS_BOX Identity: n/a- Default value:
- THREE_PASS_BOX
- See Also:
- getBlurType(),- setBlurType(BlurType)
 
 - 
spreadpublic final DoubleProperty spreadProperty The spread of the shadow. The spread is the portion of the radius where the contribution of the source material will be 100%. The remaining portion of the radius will have a contribution controlled by the blur kernel. A spread of0.0will result in a distribution of the shadow determined entirely by the blur algorithm. A spread of1.0will result in a solid growth outward of the source material opacity to the limit of the radius with a very sharp cutoff to transparency at the radius.Min: 0.0 Max: 1.0 Default: 0.0 Identity: 0.0- Default value:
- 0.0
- See Also:
- getSpread(),- setSpread(double)
 
 - 
colorpublic final ObjectProperty<Color> colorProperty The shadowColor.Min: n/a Max: n/a Default: Color.BLACK Identity: n/a- Default value:
- BLACK
- See Also:
- getColor(),- setColor(Color)
 
 - 
offsetXpublic final DoubleProperty offsetXProperty The shadow offset in the x direction, in pixels.Min: n/a Max: n/a Default: 0.0 Identity: 0.0- Default value:
- 0.0
- See Also:
- getOffsetX(),- setOffsetX(double)
 
 - 
offsetYpublic final DoubleProperty offsetYProperty The shadow offset in the y direction, in pixels.Min: n/a Max: n/a Default: 0.0 Identity: 0.0- Default value:
- 0.0
- See Also:
- getOffsetY(),- setOffsetY(double)
 
 
- 
 - 
Constructor Detail- 
DropShadowpublic DropShadow() Creates a new instance of DropShadow with default parameters.
 - 
DropShadowpublic DropShadow(double radius, Color color)Creates a new instance of DropShadow with specified radius and color.- Parameters:
- radius- the radius of the shadow blur kernel
- color- the shadow- Color
- Since:
- JavaFX 2.1
 
 - 
DropShadowpublic DropShadow(double radius, double offsetX, double offsetY, Color color)Creates a new instance of DropShadow with the specified radius, offsetX, offsetY and color.- Parameters:
- radius- the radius of the shadow blur kernel
- offsetX- the shadow offset in the x direction
- offsetY- the shadow offset in the y direction
- color- the shadow- Color
- Since:
- JavaFX 2.1
 
 - 
DropShadowpublic 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.- Parameters:
- blurType- the algorithm used to blur the shadow
- color- the shadow- Color
- radius- the radius of the shadow blur kernel
- spread- the portion of the radius where the contribution of the source material will be 100%
- offsetX- the shadow offset in the x direction
- offsetY- the shadow offset in the y direction
- Since:
- JavaFX 2.1
 
 
- 
 - 
Method Detail- 
setInputpublic final void setInput(Effect value) Sets the value of the property input.- Property description:
- The input for this Effect. If set tonull, or left unspecified, a graphical image of theNodeto which theEffectis attached will be used as the input.
- Default value:
- null
 
 - 
getInputpublic final Effect getInput() Gets the value of the property input.- Property description:
- The input for this Effect. If set tonull, or left unspecified, a graphical image of theNodeto which theEffectis attached will be used as the input.
- Default value:
- null
 
 - 
inputPropertypublic final ObjectProperty<Effect> inputProperty() The input for thisEffect. If set tonull, or left unspecified, a graphical image of theNodeto which theEffectis attached will be used as the input.- Default value:
- null
- See Also:
- getInput(),- setInput(Effect)
 
 - 
setRadiuspublic final void setRadius(double value) Sets the value of the property radius.- Property description:
- The radius of the shadow blur kernel.
 This attribute controls the distance that the shadow is spread
 to each side of the source pixels.
 Setting the radius is equivalent to setting both the widthandheightattributes to a value of(2 * radius + 1).Min: 0.0 Max: 127.0 Default: 10.0 Identity: 0.0
- Default value:
- 10.0
 
 - 
getRadiuspublic final double getRadius() Gets the value of the property radius.- Property description:
- The radius of the shadow blur kernel.
 This attribute controls the distance that the shadow is spread
 to each side of the source pixels.
 Setting the radius is equivalent to setting both the widthandheightattributes to a value of(2 * radius + 1).Min: 0.0 Max: 127.0 Default: 10.0 Identity: 0.0
- Default value:
- 10.0
 
 - 
radiusPropertypublic final DoubleProperty radiusProperty() The radius of the shadow blur kernel. This attribute controls the distance that the shadow is spread to each side of the source pixels. Setting the radius is equivalent to setting both thewidthandheightattributes to a value of(2 * radius + 1).Min: 0.0 Max: 127.0 Default: 10.0 Identity: 0.0- Default value:
- 10.0
- See Also:
- getRadius(),- setRadius(double)
 
 - 
setWidthpublic final void setWidth(double value) Sets the value of the property width.- Property description:
- The horizontal size of the shadow blur kernel.
 This attribute controls the horizontal size of the total area over
 which the shadow of a single pixel is distributed by the blur algorithm.
 Values less than 1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0
- Default value:
- 21.0
 
 - 
getWidthpublic final double getWidth() Gets the value of the property width.- Property description:
- The horizontal size of the shadow blur kernel.
 This attribute controls the horizontal size of the total area over
 which the shadow of a single pixel is distributed by the blur algorithm.
 Values less than 1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0
- Default value:
- 21.0
 
 - 
widthPropertypublic final DoubleProperty widthProperty() The horizontal size of the shadow blur kernel. This attribute controls the horizontal size of the total area over which the shadow of a single pixel is distributed by the blur algorithm. Values less than1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0- Default value:
- 21.0
- See Also:
- getWidth(),- setWidth(double)
 
 - 
setHeightpublic final void setHeight(double value) Sets the value of the property height.- Property description:
- The vertical size of the shadow blur kernel.
 This attribute controls the vertical size of the total area over
 which the shadow of a single pixel is distributed by the blur algorithm.
 Values less than 1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0
- Default value:
- 21.0
 
 - 
getHeightpublic final double getHeight() Gets the value of the property height.- Property description:
- The vertical size of the shadow blur kernel.
 This attribute controls the vertical size of the total area over
 which the shadow of a single pixel is distributed by the blur algorithm.
 Values less than 1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0
- Default value:
- 21.0
 
 - 
heightPropertypublic final DoubleProperty heightProperty() The vertical size of the shadow blur kernel. This attribute controls the vertical size of the total area over which the shadow of a single pixel is distributed by the blur algorithm. Values less than1.0are not distributed beyond the original pixel and so have no blurring effect on the shadow.Min: 0.0 Max: 255.0 Default: 21.0 Identity: <1.0- Default value:
- 21.0
- See Also:
- getHeight(),- setHeight(double)
 
 - 
setBlurTypepublic final void setBlurType(BlurType value) Sets the value of the property blurType.- Property description:
- The algorithm used to blur the shadow.
 Min: n/a Max: n/a Default: BlurType.THREE_PASS_BOX Identity: n/a
- Default value:
- THREE_PASS_BOX
 
 - 
getBlurTypepublic final BlurType getBlurType() Gets the value of the property blurType.- Property description:
- The algorithm used to blur the shadow.
 Min: n/a Max: n/a Default: BlurType.THREE_PASS_BOX Identity: n/a
- Default value:
- THREE_PASS_BOX
 
 - 
blurTypePropertypublic final ObjectProperty<BlurType> blurTypeProperty() The algorithm used to blur the shadow.Min: n/a Max: n/a Default: BlurType.THREE_PASS_BOX Identity: n/a- Default value:
- THREE_PASS_BOX
- See Also:
- getBlurType(),- setBlurType(BlurType)
 
 - 
setSpreadpublic final void setSpread(double value) Sets the value of the property spread.- Property description:
- The spread of the shadow.
 The spread is the portion of the radius where the contribution of
 the source material will be 100%.
 The remaining portion of the radius will have a contribution
 controlled by the blur kernel.
 A spread of 0.0will result in a distribution of the shadow determined entirely by the blur algorithm. A spread of1.0will result in a solid growth outward of the source material opacity to the limit of the radius with a very sharp cutoff to transparency at the radius.Min: 0.0 Max: 1.0 Default: 0.0 Identity: 0.0
- Default value:
- 0.0
 
 - 
getSpreadpublic final double getSpread() Gets the value of the property spread.- Property description:
- The spread of the shadow.
 The spread is the portion of the radius where the contribution of
 the source material will be 100%.
 The remaining portion of the radius will have a contribution
 controlled by the blur kernel.
 A spread of 0.0will result in a distribution of the shadow determined entirely by the blur algorithm. A spread of1.0will result in a solid growth outward of the source material opacity to the limit of the radius with a very sharp cutoff to transparency at the radius.Min: 0.0 Max: 1.0 Default: 0.0 Identity: 0.0
- Default value:
- 0.0
 
 - 
spreadPropertypublic final DoubleProperty spreadProperty() The spread of the shadow. The spread is the portion of the radius where the contribution of the source material will be 100%. The remaining portion of the radius will have a contribution controlled by the blur kernel. A spread of0.0will result in a distribution of the shadow determined entirely by the blur algorithm. A spread of1.0will result in a solid growth outward of the source material opacity to the limit of the radius with a very sharp cutoff to transparency at the radius.Min: 0.0 Max: 1.0 Default: 0.0 Identity: 0.0- Default value:
- 0.0
- See Also:
- getSpread(),- setSpread(double)
 
 - 
setColorpublic final void setColor(Color value) Sets the value of the property color.- Property description:
- The shadow Color.Min: n/a Max: n/a Default: Color.BLACK Identity: n/a
- Default value:
- BLACK
 
 - 
getColorpublic final Color getColor() Gets the value of the property color.- Property description:
- The shadow Color.Min: n/a Max: n/a Default: Color.BLACK Identity: n/a
- Default value:
- BLACK
 
 - 
colorPropertypublic final ObjectProperty<Color> colorProperty() The shadowColor.Min: n/a Max: n/a Default: Color.BLACK Identity: n/a- Default value:
- BLACK
- See Also:
- getColor(),- setColor(Color)
 
 - 
setOffsetXpublic final void setOffsetX(double value) Sets the value of the property offsetX.- Property description:
- The shadow offset in the x direction, in pixels.
 Min: n/a Max: n/a Default: 0.0 Identity: 0.0
- Default value:
- 0.0
 
 - 
getOffsetXpublic final double getOffsetX() Gets the value of the property offsetX.- Property description:
- The shadow offset in the x direction, in pixels.
 Min: n/a Max: n/a Default: 0.0 Identity: 0.0
- Default value:
- 0.0
 
 - 
offsetXPropertypublic final DoubleProperty offsetXProperty() The shadow offset in the x direction, in pixels.Min: n/a Max: n/a Default: 0.0 Identity: 0.0- Default value:
- 0.0
- See Also:
- getOffsetX(),- setOffsetX(double)
 
 - 
setOffsetYpublic final void setOffsetY(double value) Sets the value of the property offsetY.- Property description:
- The shadow offset in the y direction, in pixels.
 Min: n/a Max: n/a Default: 0.0 Identity: 0.0
- Default value:
- 0.0
 
 - 
getOffsetYpublic final double getOffsetY() Gets the value of the property offsetY.- Property description:
- The shadow offset in the y direction, in pixels.
 Min: n/a Max: n/a Default: 0.0 Identity: 0.0
- Default value:
- 0.0
 
 - 
offsetYPropertypublic final DoubleProperty offsetYProperty() The shadow offset in the y direction, in pixels.Min: n/a Max: n/a Default: 0.0 Identity: 0.0- Default value:
- 0.0
- See Also:
- getOffsetY(),- setOffsetY(double)
 
 
- 
 
-