Uses of Class
javafx.geometry.Side
-
Packages that use Side 软件包 描述 javafx.geometry 提供一组2D类,用于定义和执行与二维几何相关的对象的操作。javafx.scene.chart JavaFX用户界面提供了一组图表组件,这是一种非常方便的数据可视化方式。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.layout 提供类来支持用户界面布局。 -
-
Uses of Side in javafx.geometry
Methods in javafx.geometry that return Side Modifier and Type 方法 描述 static Side
Side. valueOf(String name)
以指定的名称返回此类型的枚举常量。static Side[]
Side. values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。 -
Uses of Side in javafx.scene.chart
Methods in javafx.scene.chart that return Side Modifier and Type 方法 描述 Side
Chart. getLegendSide()
获取属性legendSide的值。Side
Axis. getSide()
获取属性侧的值。Side
Chart. getTitleSide()
获取属性titleSide的值。Methods in javafx.scene.chart that return types with arguments of type Side Modifier and Type 方法 描述 ObjectProperty<Side>
Chart. legendSideProperty()
图表侧面应显示图例ObjectProperty<Side>
Axis. sideProperty()
该轴正在绘制的曲线的一侧ObjectProperty<Side>
Chart. titleSideProperty()
显示标题的图表侧Methods in javafx.scene.chart with parameters of type Side Modifier and Type 方法 描述 void
Chart. setLegendSide(Side value)
设置属性legendSide的值。void
Axis. setSide(Side value)
设置属性侧的值。void
Chart. setTitleSide(Side value)
设置属性titleSide的值。 -
Uses of Side in javafx.scene.control
Methods in javafx.scene.control that return Side Modifier and Type 方法 描述 Side
MenuButton. getPopupSide()
获取属性popupSide的值。Side
TabPane. getSide()
TabPane中选项卡的当前位置。Methods in javafx.scene.control that return types with arguments of type Side Modifier and Type 方法 描述 ObjectProperty<Side>
MenuButton. popupSideProperty()
表示ContextMenu
应该在哪一边打开与MenuButton相关的方面。ObjectProperty<Side>
TabPane. sideProperty()
TabPane中选项卡的位置。Methods in javafx.scene.control with parameters of type Side Modifier and Type 方法 描述 void
MenuButton. setPopupSide(Side value)
设置属性popupSide的值。void
TabPane. setSide(Side value)
将标签放置在此TabPane中的位置。void
ContextMenu. show(Node anchor, Side side, double dx, double dy)
示出了ContextMenu
相对于给定锚节点,在由指定的侧hpos
个vpos
参数,并且由给定的偏移dx
倍dy
分别用于x轴和y轴,的值。 -
Uses of Side in javafx.scene.layout
Methods in javafx.scene.layout that return Side Modifier and Type 方法 描述 Side
BackgroundPosition. getHorizontalSide()
背景图像被锚定在水平轴的一侧。Side
BackgroundPosition. getVerticalSide()
沿着垂直轴的SideMap背景。Constructors in javafx.scene.layout with parameters of type Side Constructor 描述 BackgroundPosition(Side horizontalSide, double horizontalPosition, boolean horizontalAsPercentage, Side verticalSide, double verticalPosition, boolean verticalAsPercentage)
Creates a new BackgroundPosition.
-