|
Spec-Zone .ru
спецификации, руководства, описания, API
|
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.
|
absoluteProperty| 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()
Defines the specified X coordinate.
|
double |
getY()
Defines the specified Y coordinate.
|
void |
setX(double value)
Defines the specified X coordinate.
|
void |
setY(double value)
Defines the specified Y coordinate.
|
DoubleProperty |
xProperty()
Defines the specified X coordinate.
|
DoubleProperty |
yProperty()
Defines the specified Y coordinate.
|
absoluteProperty, isAbsolute, setAbsolutegetX(),
setX(double)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, 2011, Oracle and/or its affiliates. All rights reserved. Use is subject to .