Uses of Class
javafx.scene.shape.PathElement
-
Packages that use PathElement 软件包 描述 javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置javafx.scene.shape 提供一组2D类,用于定义和执行与二维几何相关的对象的操作。javafx.scene.text 为字体和可渲染的文本节点提供一组类。 -
-
Uses of PathElement in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return PathElement Modifier and Type 方法 描述 protected PathElement[]
TextAreaSkin. getRangeShape(int start, int end)
protected PathElement[]
TextFieldSkin. getRangeShape(int start, int end)
protected abstract PathElement[]
TextInputControlSkin. getRangeShape(int start, int end)
protected PathElement[]
TextAreaSkin. getUnderlineShape(int start, int end)
protected PathElement[]
TextFieldSkin. getUnderlineShape(int start, int end)
protected abstract PathElement[]
TextInputControlSkin. getUnderlineShape(int start, int end)
-
Uses of PathElement in javafx.scene.shape
Subclasses of PathElement in javafx.scene.shape Modifier and Type Class 描述 class
ArcTo
一个路径元素,它使用指定的半径从前一个坐标到指定的x和y坐标形成弧。class
ClosePath
关闭当前路径的路径元素。class
CubicCurveTo
通过使用指定点(controlX1,controlY1)
和(controlX2,controlY2)
(controlX1,controlY1)
与当前坐标和指定坐标(x,y)
相交的立方Bier曲线,创建由三个新点定义的曲线路径元素。class
HLineTo
创建从当前点到x的水平线路元素。class
LineTo
通过从当前坐标绘制直线到新坐标来创建线路元素。class
MoveTo
通过移动到指定的坐标来创建对路径的补充。class
QuadCurveTo
通过绘制与当前坐标和指定坐标(x, y)
相交的二次曲线曲线,使用指定点(controlX, controlY)
作为Bézier控制点,创建由两个新点定义的曲线路径元素。class
VLineTo
创建从当前点到y的垂直线路元素。Methods in javafx.scene.shape that return types with arguments of type PathElement Modifier and Type 方法 描述 ObservableList<PathElement>
Path. getElements()
获取此路径的路径元素的可观察列表。Constructors in javafx.scene.shape with parameters of type PathElement Constructor 描述 Path(PathElement... elements)
创建一个新的路径实例Constructor parameters in javafx.scene.shape with type arguments of type PathElement Constructor 描述 Path(Collection<? extends PathElement> elements)
创建路径的新实例 -
Uses of PathElement in javafx.scene.text
Methods in javafx.scene.text that return PathElement Modifier and Type 方法 描述 PathElement[]
Text. caretShape(int charIndex, boolean caretBias)
在给定的索引和偏倚上返回插入符号的形状。PathElement[]
TextFlow. caretShape(int charIndex, boolean leading)
以局部坐标返回插入符号的形状。PathElement[]
Text. getCaretShape()
在本地坐标中插入符号的形状。PathElement[]
Text. getSelectionShape()
局部坐标选择形状。PathElement[]
Text. rangeShape(int start, int end)
返回局部坐标中文本范围的形状。PathElement[]
TextFlow. rangeShape(int start, int end)
返回局部坐标中文本范围的形状。PathElement[]
Text. underlineShape(int start, int end)
返回局部坐标下划线的形状。
-