Uses of Class
javafx.geometry.Bounds
-
Packages that use Bounds 软件包 描述 javafx.geometry 提供一组2D类,用于定义和执行与二维几何相关的对象的操作。javafx.scene 为JavaFX Scene Graph API提供核心的基类集。javafx.scene.control JavaFX用户界面控件(UI控件或仅控件)是JavaFX场景中的专用节点,特别适用于许多不同应用程序环境中的重用。javafx.scene.control.skin javafx.scene.control.skin包是皮肤类(通常每个UI控件一个)所在的位置javafx.scene.layout 提供类来支持用户界面布局。javafx.scene.transform 提供一组方便的类来执行Affine对象的旋转,缩放,剪切和转换转换。 -
-
Uses of Bounds in javafx.geometry
Subclasses of Bounds in javafx.geometry Modifier and Type Class 描述 classBoundingBox一个矩形边框,用于描述节点或其他场景图对象的界限。Methods in javafx.geometry with parameters of type Bounds Modifier and Type 方法 描述 booleanBoundingBox. contains(Bounds b)测试这个Bounds的内部Bounds完全包含指定的边界,b。abstract booleanBounds. contains(Bounds b)测试这个Bounds的内部Bounds完全包含指定的边界,b。booleanBoundingBox. intersects(Bounds b)测试这个Bounds的内部是否与指定边界的内部相交,b。abstract booleanBounds. intersects(Bounds b)测试这个Bounds的内部是否与指定的边界b的内部相交。 -
Uses of Bounds in javafx.scene
Methods in javafx.scene that return Bounds Modifier and Type 方法 描述 BoundsNode. getBoundsInLocal()获取属性boundsInLocal的值。BoundsNode. getBoundsInParent()获取属性boundsInParent的值。BoundsNode. getLayoutBounds()获取属性layoutBounds的值。BoundsNode. localToParent(Bounds localBounds)将此Node的局部坐标空间的Node转换为其父级的坐标空间。BoundsNode. localToScene(Bounds localBounds)将此Node的局部坐标空间的Node转换为其场景的坐标空间。BoundsNode. localToScene(Bounds localBounds, boolean rootScene)将此Node的局部坐标空间的Node转换为其场景的坐标空间。BoundsNode. localToScreen(Bounds localBounds)将此Node的局部坐标空间的Node转换为其Screen的坐标空间。BoundsNode. parentToLocal(Bounds parentBounds)将矩形从母体的坐标空间转换为此Node的局部坐标空间。BoundsNode. sceneToLocal(Bounds sceneBounds)将矩形从场景的坐标空间转换为此Node的局部坐标空间。BoundsNode. sceneToLocal(Bounds bounds, boolean rootScene)将场景坐标空间的边界变换为Node的局部坐标空间。BoundsNode. screenToLocal(Bounds screenBounds)将矩形从Screen的坐标空间转换为此Node的本地坐标空间。Methods in javafx.scene that return types with arguments of type Bounds Modifier and Type 方法 描述 ReadOnlyObjectProperty<Bounds>Node. boundsInLocalProperty()该节点未转换的局部坐标空间中的Node的矩形边界。ReadOnlyObjectProperty<Bounds>Node. boundsInParentProperty()这个Node的矩形边界包括它的变换。ReadOnlyObjectProperty<Bounds>Node. layoutBoundsProperty()应该用于此节点的布局计算的矩形边界。Methods in javafx.scene with parameters of type Bounds Modifier and Type 方法 描述 booleanNode. intersects(Bounds localBounds)返回true如果给定的范围(在当地指定的坐标这个空间Node)相交这个形状Node。BoundsNode. localToParent(Bounds localBounds)将此Node的局部坐标空间的Node转换为其父级的坐标空间。BoundsNode. localToScene(Bounds localBounds)将此Node的局部坐标空间的Node转换为其场景的坐标空间。BoundsNode. localToScene(Bounds localBounds, boolean rootScene)将此Node的局部坐标空间的Node转换为其场景的坐标空间。BoundsNode. localToScreen(Bounds localBounds)将此Node的局部坐标空间的Node转换为其Screen的坐标空间。BoundsNode. parentToLocal(Bounds parentBounds)将矩形从母体的坐标空间转换为此Node的局部坐标空间。BoundsNode. sceneToLocal(Bounds sceneBounds)将矩形从场景的坐标空间转换为此Node的局部坐标空间。BoundsNode. sceneToLocal(Bounds bounds, boolean rootScene)将场景坐标空间的边界变换为Node的局部坐标空间。BoundsNode. screenToLocal(Bounds screenBounds)将矩形从Screen的坐标空间转换为此Node的本地坐标空间。 -
Uses of Bounds in javafx.scene.control
Methods in javafx.scene.control that return Bounds Modifier and Type 方法 描述 BoundsScrollPane. getViewportBounds()获取属性viewportBounds的值。Methods in javafx.scene.control that return types with arguments of type Bounds Modifier and Type 方法 描述 ObjectProperty<Bounds>ScrollPane. viewportBoundsProperty()ScrollPane视口的实际边界。Methods in javafx.scene.control with parameters of type Bounds Modifier and Type 方法 描述 voidScrollPane. setViewportBounds(Bounds value)设置属性viewportBounds的值。 -
Uses of Bounds in javafx.scene.control.skin
Methods in javafx.scene.control.skin that return Bounds Modifier and Type 方法 描述 BoundsTextAreaSkin. getCaretBounds() -
Uses of Bounds in javafx.scene.layout
Methods in javafx.scene.layout that return Bounds Modifier and Type 方法 描述 BoundsGridPane. getCellBounds(int columnIndex, int rowIndex)返回指定列和行位置的单元格的边界。 -
Uses of Bounds in javafx.scene.transform
Methods in javafx.scene.transform that return Bounds Modifier and Type 方法 描述 BoundsTransform. inverseTransform(Bounds bounds)通过该变换的倒数转换指定的边界。BoundsTransform. transform(Bounds bounds)通过此转换转换指定的边界。Methods in javafx.scene.transform with parameters of type Bounds Modifier and Type 方法 描述 BoundsTransform. inverseTransform(Bounds bounds)通过该变换的倒数转换指定的边界。booleanTransform. similarTo(Transform transform, Bounds range, double maxDelta)检查这个变换是否类似于指定的变换。BoundsTransform. transform(Bounds bounds)Transforms the specified bounds by this transform.
-