public class MoveTo extends PathElement
For more information on path elements see the Path and
PathElement classes.
Example:
import javafx.scene.shape.*; Path path = new Path(); path.getElements().add(new MoveTo(0.0f, 0.0f)); path.getElements().add(new LineTo(100.0f, 100.0f));
| Type | Property and Description |
|---|---|
DoubleProperty |
x
Defines the specified X coordinate.
|
DoubleProperty |
y
Defines the specified Y coordinate.
|
absolute| Constructor and Description |
|---|
MoveTo()
Creates an empty instance of MoveTo.
|
MoveTo(double x,
double y)
Creates a new instance of MoveTo.
|
| Modifier and Type | Method and Description |
|---|---|
double |
getX()
Gets the value of the property x.
|
double |
getY()
Gets the value of the property y.
|
void |
setX(double value)
Sets the value of the property x.
|
void |
setY(double value)
Sets the value of the property y.
|
String |
toString()
Returns a string representation of this
MoveTo object. |
DoubleProperty |
xProperty()
Defines the specified X coordinate.
|
DoubleProperty |
yProperty()
Defines the specified Y coordinate.
|
absoluteProperty, isAbsolute, setAbsolutepublic final DoubleProperty xProperty
getX(),
setX(double)public final DoubleProperty yProperty
getY(),
setY(double)public MoveTo()
public MoveTo(double x,
double y)
x - the horizontal coordinate to move toy - the vertical coordinate to move topublic final void setX(double value)
public final double getX()
public final DoubleProperty xProperty()
getX(),
setX(double)public final void setY(double value)
public final double getY()
public final DoubleProperty yProperty()
getY(),
setY(double)Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.