Uses of Class
javafx.scene.text.TextAlignment
-
Packages that use TextAlignment 软件包 描述 javafx.scene.canvas 为canvas提供一组类,即渲染API的立即模式样式。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.text 为字体和可渲染的文本节点提供一组类。 -
-
Uses of TextAlignment in javafx.scene.canvas
Methods in javafx.scene.canvas that return TextAlignment Modifier and Type 方法 描述 TextAlignment
GraphicsContext. getTextAlign()
获得当前的TextAlignment
。Methods in javafx.scene.canvas with parameters of type TextAlignment Modifier and Type 方法 描述 void
GraphicsContext. setTextAlign(TextAlignment align)
定义水平文本对齐,相对于文本x
来源。 -
Uses of TextAlignment in javafx.scene.control
Methods in javafx.scene.control that return TextAlignment Modifier and Type 方法 描述 TextAlignment
Labeled. getTextAlignment()
获取属性textAlignment的值。TextAlignment
Tooltip. getTextAlignment()
获取属性textAlignment的值。Methods in javafx.scene.control that return types with arguments of type TextAlignment Modifier and Type 方法 描述 ObjectProperty<TextAlignment>
Labeled. textAlignmentProperty()
指定 文本行多行的行为行Labeled.contentDisplayProperty()
影响图形和文本,此设置仅影响文本边界的多行文本。ObjectProperty<TextAlignment>
Tooltip. textAlignmentProperty()
指定 文本行多行时的行为。Methods in javafx.scene.control with parameters of type TextAlignment Modifier and Type 方法 描述 void
Labeled. setTextAlignment(TextAlignment value)
设置textAlignment属性的值。void
Tooltip. setTextAlignment(TextAlignment value)
设置textAlignment属性的值。 -
Uses of TextAlignment in javafx.scene.text
Methods in javafx.scene.text that return TextAlignment Modifier and Type 方法 描述 TextAlignment
Text. getTextAlignment()
获取属性textAlignment的值。TextAlignment
TextFlow. getTextAlignment()
获取属性textAlignment的值。static TextAlignment
TextAlignment. valueOf(String name)
以指定的名称返回此类型的枚举常量。static TextAlignment[]
TextAlignment. values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。Methods in javafx.scene.text that return types with arguments of type TextAlignment Modifier and Type 方法 描述 ObjectProperty<TextAlignment>
Text. textAlignmentProperty()
在边界框中定义水平文本对齐。ObjectProperty<TextAlignment>
TextFlow. textAlignmentProperty()
定义水平文本对齐。Methods in javafx.scene.text with parameters of type TextAlignment Modifier and Type 方法 描述 void
Text. setTextAlignment(TextAlignment value)
设置textAlignment属性的值。void
TextFlow. setTextAlignment(TextAlignment value)
Sets the value of the property textAlignment.
-