Uses of Class
javafx.scene.control.IndexRange
-
Packages that use IndexRange 软件包 描述 javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。 -
-
Uses of IndexRange in javafx.scene.control
Methods in javafx.scene.control that return IndexRange Modifier and Type 方法 描述 IndexRange
TextFormatter.Change. getSelection()
获取此更改的选择。IndexRange
TextInputControl. getSelection()
获取属性选择的值。static IndexRange
IndexRange. normalize(int v1, int v2)
创建一个具有较小值作为起始索引的IndexRange实例的便利方法,较大的值作为结束索引。static IndexRange
IndexRange. valueOf(String value)
在“2,6”形式的字符串中解析的方便方法,它将创建一个起始值为2的IndexRange实例,最终值为6。Methods in javafx.scene.control that return types with arguments of type IndexRange Modifier and Type 方法 描述 ReadOnlyObjectProperty<IndexRange>
TextInputControl. selectionProperty()
当前选择。Methods in javafx.scene.control with parameters of type IndexRange Modifier and Type 方法 描述 void
TextInputControl. deleteText(IndexRange range)
从内容中删除一系列字符。void
TextInputControl. replaceText(IndexRange range, String text)
用给定的文本替换一系列的字符。Constructors in javafx.scene.control with parameters of type IndexRange Constructor 描述 IndexRange(IndexRange range)
通过复制给定的IndexRange对象的值来创建IndexRange的实例。
-