Class Shadow

java.lang.Object
javafx.scene.effect.Effect
javafx.scene.effect.Shadow

public class Shadow extends Effect
An effect which creates a monochrome duplicate of an input with blurry edges. This effect is primarily used along with its default black color for purposes of combining it with the original to create a shadow. It can also be used with a light color and combined with an original to create a glow effect. The DropShadow effect is a utility effect which automatically combines this Shadow effect with an original graphic for ease of adding a shadow to an existing scene graph Node with a single effect.
Since:
JavaFX 2.0
  • Property Details Link icon

    • input Link icon

      public final ObjectProperty<Effect> inputProperty
      The input for this Effect. 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:
    • radius Link icon

      public 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 the width and height attributes 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:
    • width Link icon

      public 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 than 1.0 are 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:
    • height Link icon

      public 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 than 1.0 are 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:
    • blurType Link icon

      public 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:
    • color Link icon

      public final ObjectProperty<Color> colorProperty
      The shadow Color.
             Min: n/a
             Max: n/a
         Default: Color.BLACK
        Identity: n/a
       
      Default value:
      BLACK
      See Also:
  • Constructor Details Link icon

    • Shadow Link icon

      public Shadow()
      Creates a new instance of Shadow with default parameters.
    • Shadow Link icon

      public Shadow(double radius, Color color)
      Creates a new instance of Shadow with specified radius and color.
      Parameters:
      radius - the radius of the shadow blur kernel
      color - the shadow Color
      Since:
      JavaFX 2.1
    • Shadow Link icon

      public Shadow(BlurType blurType, Color color, double radius)
      Creates a new instance of Shadow with the specified blurType, color, radius.
      Parameters:
      blurType - the algorithm used to blur the shadow
      color - the shadow Color
      radius - the radius of the shadow blur kernel
      Since:
      JavaFX 2.1
  • Method Details Link icon

    • setInput Link icon

      public final void setInput(Effect value)
      Sets the value of the input property.
      Property description:
      The input for this Effect. 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
      Parameters:
      value - the value for the input property
      See Also:
    • getInput Link icon

      public final Effect getInput()
      Gets the value of the input property.
      Property description:
      The input for this Effect. 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
      Returns:
      the value of the input property
      See Also:
    • inputProperty Link icon

      public final ObjectProperty<Effect> inputProperty()
      The input for this Effect. 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
      Returns:
      the input property
      See Also:
    • setRadius Link icon

      public final void setRadius(double value)
      Sets the value of the radius property.
      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 width and height attributes to a value of (2 * radius + 1).
             Min:   0.0
             Max: 127.0
         Default:  10.0
        Identity:   0.0
       
      Default value:
      10.0
      Parameters:
      value - the value for the radius property
      See Also:
    • getRadius Link icon

      public final double getRadius()
      Gets the value of the radius property.
      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 width and height attributes to a value of (2 * radius + 1).
             Min:   0.0
             Max: 127.0
         Default:  10.0
        Identity:   0.0
       
      Default value:
      10.0
      Returns:
      the value of the radius property
      See Also:
    • radiusProperty Link icon

      public 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 the width and height attributes to a value of (2 * radius + 1).
             Min:   0.0
             Max: 127.0
         Default:  10.0
        Identity:   0.0
       
      Default value:
      10.0
      Returns:
      the radius property
      See Also:
    • setWidth Link icon

      public final void setWidth(double value)
      Sets the value of the width property.
      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.0 are 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
      Parameters:
      value - the value for the width property
      See Also:
    • getWidth Link icon

      public final double getWidth()
      Gets the value of the width property.
      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.0 are 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
      Returns:
      the value of the width property
      See Also:
    • widthProperty Link icon

      public 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 than 1.0 are 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
      Returns:
      the width property
      See Also:
    • setHeight Link icon

      public final void setHeight(double value)
      Sets the value of the height property.
      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.0 are 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
      Parameters:
      value - the value for the height property
      See Also:
    • getHeight Link icon

      public final double getHeight()
      Gets the value of the height property.
      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.0 are 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
      Returns:
      the value of the height property
      See Also:
    • heightProperty Link icon

      public 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 than 1.0 are 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
      Returns:
      the height property
      See Also:
    • setBlurType Link icon

      public final void setBlurType(BlurType value)
      Sets the value of the blurType property.
      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
      Parameters:
      value - the value for the blurType property
      See Also:
    • getBlurType Link icon

      public final BlurType getBlurType()
      Gets the value of the blurType property.
      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
      Returns:
      the value of the blurType property
      See Also:
    • blurTypeProperty Link icon

      public 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
      Returns:
      the blurType property
      See Also:
    • setColor Link icon

      public final void setColor(Color value)
      Sets the value of the color property.
      Property description:
      The shadow Color.
             Min: n/a
             Max: n/a
         Default: Color.BLACK
        Identity: n/a
       
      Default value:
      BLACK
      Parameters:
      value - the value for the color property
      See Also:
    • getColor Link icon

      public final Color getColor()
      Gets the value of the color property.
      Property description:
      The shadow Color.
             Min: n/a
             Max: n/a
         Default: Color.BLACK
        Identity: n/a
       
      Default value:
      BLACK
      Returns:
      the value of the color property
      See Also:
    • colorProperty Link icon

      public final ObjectProperty<Color> colorProperty()
      The shadow Color.
             Min: n/a
             Max: n/a
         Default: Color.BLACK
        Identity: n/a
       
      Default value:
      BLACK
      Returns:
      the color property
      See Also: