- java.lang.Object
-
- javafx.scene.shape.PathElement
-
- javafx.scene.shape.HLineTo
-
public class HLineTo extends PathElement
创建从当前点到x的水平线路元素。有关路径元素的更多信息,请参阅
Path
和PathElement
类。例:
import javafx.scene.shape.*; Path path = new Path(); path.getElements().add(new MoveTo(0.0f, 0.0f)); path.getElements().add(new HLineTo(80.0f));
- 从以下版本开始:
- JavaFX 2.0
-
-
Property Summary
Properties Type Property 描述 DoubleProperty
x
定义X坐标。-
Properties inherited from class javafx.scene.shape.PathElement
absolute
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 double
getX()
获取属性x的值。void
setX(double value)
设置属性x的值。String
toString()
返回此HLineTo
对象的字符串表示形式。DoubleProperty
xProperty()
定义X坐标。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javafx.scene.shape.PathElement
absoluteProperty, isAbsolute, setAbsolute
-
-
-
-
Property Detail
-
x
public final DoubleProperty xProperty
定义X坐标。- Default value:
- 0.0
- 另请参见:
-
getX()
,setX(double)
-
-
方法详细信息
-
setX
public final void setX(double value)
设置属性x的值。- Property description:
- 定义X坐标。
- Default value:
- 0.0
-
getX
public final double getX()
获取属性x的值。- Property description:
- 定义X坐标。
- Default value:
- 0.0
-
xProperty
public final DoubleProperty xProperty()
定义X坐标。- Default value:
- 0.0
- 另请参见:
-
getX()
,setX(double)
-
-