Uses of Class
javafx.scene.shape.FillRule
-
Packages that use FillRule 软件包 描述 javafx.scene.canvas 为canvas提供一组类,即渲染API的立即模式样式。javafx.scene.shape 提供一组2D类,用于定义和执行与二维几何相关的对象的操作。 -
-
Uses of FillRule in javafx.scene.canvas
Methods in javafx.scene.canvas that return FillRule Modifier and Type 方法 描述 FillRule
GraphicsContext. getFillRule()
获取填充规则属性,以确定填充和剪辑操作中路径的内部。Methods in javafx.scene.canvas with parameters of type FillRule Modifier and Type 方法 描述 void
GraphicsContext. setFillRule(FillRule fillRule)
设置填充规则属性以确定填充或剪辑操作中路径的内部。 -
Uses of FillRule in javafx.scene.shape
Methods in javafx.scene.shape that return FillRule Modifier and Type 方法 描述 FillRule
Path. getFillRule()
获取属性fillRule的值。FillRule
SVGPath. getFillRule()
获取属性fillRule的值。static FillRule
FillRule. valueOf(String name)
以指定的名称返回此类型的枚举常量。static FillRule[]
FillRule. values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。Methods in javafx.scene.shape that return types with arguments of type FillRule Modifier and Type 方法 描述 ObjectProperty<FillRule>
Path. fillRuleProperty()
定义用于确定路径内部的填充规则常数。ObjectProperty<FillRule>
SVGPath. fillRuleProperty()
定义用于确定路径内部的填充规则常数。Methods in javafx.scene.shape with parameters of type FillRule Modifier and Type 方法 描述 void
Path. setFillRule(FillRule value)
设置属性fillRule的值。void
SVGPath. setFillRule(FillRule value)
设置属性fillRule的值。
-