|
Spec-Zone .ru
спецификации, руководства, описания, API
|
public class LineTo 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, 50.0f)); path.getElements().add(new LineTo(100.0f, 100.0f));
| Type | Property and Description |
|---|---|
DoubleProperty |
x
Defines the X coordinate.
|
DoubleProperty |
y
Defines the Y coordinate.
|
absoluteProperty| Constructor and Description |
|---|
LineTo()
Creates an empty instance of LineTo.
|
LineTo(double x,
double y)
Creates a new isntance of LineTo.
|
| Modifier and Type | Method and Description |
|---|---|
double |
getX()
Defines the X coordinate.
|
double |
getY()
Defines the Y coordinate.
|
void |
setX(double value)
Defines the X coordinate.
|
void |
setY(double value)
Defines the Y coordinate.
|
DoubleProperty |
xProperty()
Defines the X coordinate.
|
DoubleProperty |
yProperty()
Defines the Y coordinate.
|
absoluteProperty, isAbsolute, setAbsolutegetX(),
setX(double)getY(),
setY(double)public LineTo()
public LineTo(double x,
double y)
x - the horizontal coordinate of the line end pointy - the vertical coordinate of the line end pointpublic 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 .