Uses of Class
javafx.scene.paint.Stop
-
Packages that use Stop 软件包 描述 javafx.css.converter 提供各种转换CSS解析值的StyleConverter
类。javafx.scene.paint 提供用于在渲染场景图时填充形状和背景的颜色和渐变类的集合。 -
-
Uses of Stop in javafx.css.converter
Methods in javafx.css.converter that return Stop Modifier and Type 方法 描述 Stop
StopConverter. convert(ParsedValue<ParsedValue[],Stop> value, Font font)
Method parameters in javafx.css.converter with type arguments of type Stop Modifier and Type 方法 描述 Stop
StopConverter. convert(ParsedValue<ParsedValue[],Stop> value, Font font)
-
Uses of Stop in javafx.scene.paint
Methods in javafx.scene.paint that return types with arguments of type Stop Modifier and Type 方法 描述 List<Stop>
LinearGradient. getStops()
2个或多个Stop
值的序列,指定如何沿渐变分布颜色。List<Stop>
RadialGradient. getStops()
2个或多个Stop
值的序列,用于指定如何沿渐变分布颜色。Constructors in javafx.scene.paint with parameters of type Stop Constructor 描述 LinearGradient(double startX, double startY, double endX, double endY, boolean proportional, CycleMethod cycleMethod, Stop... stops)
创建一个新的LinearGradient实例。RadialGradient(double focusAngle, double focusDistance, double centerX, double centerY, double radius, boolean proportional, CycleMethod cycleMethod, Stop... stops)
创建一个新的RadialGradient实例。Constructor parameters in javafx.scene.paint with type arguments of type Stop Constructor 描述 LinearGradient(double startX, double startY, double endX, double endY, boolean proportional, CycleMethod cycleMethod, List<Stop> stops)
创建一个新的LinearGradient实例。RadialGradient(double focusAngle, double focusDistance, double centerX, double centerY, double radius, boolean proportional, CycleMethod cycleMethod, List<Stop> stops)
创建一个新的RadialGradient实例。
-