Uses of Class
javafx.scene.effect.BlurType
-
Packages that use BlurType 软件包 描述 javafx.scene.effect 提供一组用于将图形过滤效果附加到JavaFX Scene Graph节点的类。 -
-
Uses of BlurType in javafx.scene.effect
Methods in javafx.scene.effect that return BlurType Modifier and Type 方法 描述 BlurType
DropShadow. getBlurType()
获取属性blurType的值。BlurType
InnerShadow. getBlurType()
获取属性blurType的值。BlurType
Shadow. getBlurType()
获取属性blurType的值。static BlurType
BlurType. valueOf(String name)
以指定的名称返回此类型的枚举常量。static BlurType[]
BlurType. values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。Methods in javafx.scene.effect that return types with arguments of type BlurType Modifier and Type 方法 描述 ObjectProperty<BlurType>
DropShadow. blurTypeProperty()
用于模糊阴影的算法。ObjectProperty<BlurType>
InnerShadow. blurTypeProperty()
用于模糊阴影的算法。ObjectProperty<BlurType>
Shadow. blurTypeProperty()
用于模糊阴影的算法。Methods in javafx.scene.effect with parameters of type BlurType Modifier and Type 方法 描述 void
DropShadow. setBlurType(BlurType value)
设置属性blurType的值。void
InnerShadow. setBlurType(BlurType value)
设置属性blurType的值。void
Shadow. setBlurType(BlurType value)
设置属性blurType的值。Constructors in javafx.scene.effect with parameters of type BlurType Constructor 描述 DropShadow(BlurType blurType, Color color, double radius, double spread, double offsetX, double offsetY)
使用指定的blurType,color,radius,spread,offsetX和offsetY创建一个新的DropShadow实例。InnerShadow(BlurType blurType, Color color, double radius, double choke, double offsetX, double offsetY)
使用指定的blurType,color,radius,spread,offsetX和offsetY创建一个新的InnerShadow实例。Shadow(BlurType blurType, Color color, double radius)
用指定的blurType,color,radius创建一个新的Shadow实例。
-