Package | Description |
---|---|
javafx.scene.canvas |
Provides the set of classes for canvas, an immediate mode style of rendering API.
|
javafx.scene.layout |
Provides classes to support user interface layout.
|
javafx.scene.shape |
Provides the set of 2D classes for defining and performing operations on
objects related to two-dimensional geometry.
|
Modifier and Type | Method and Description |
---|---|
StrokeLineCap |
GraphicsContext.getLineCap()
Gets the current stroke line cap.
|
Modifier and Type | Method and Description |
---|---|
void |
GraphicsContext.setLineCap(StrokeLineCap cap)
Sets the current stroke line cap.
|
Modifier and Type | Method and Description |
---|---|
StrokeLineCap |
BorderStrokeStyle.getLineCap()
The end cap style of this
Shape as one of the following
values that define possible end cap styles:
StrokeLineCap.BUTT , StrokeLineCap.ROUND ,
and StrokeLineCap.SQUARE . |
Constructor and Description |
---|
BorderStrokeStyle(StrokeType type,
StrokeLineJoin lineJoin,
StrokeLineCap lineCap,
double miterLimit,
double dashOffset,
List<Double> dashArray)
Creates a new BorderStrokeStyle.
|
Modifier and Type | Method and Description |
---|---|
StrokeLineCap |
Shape.getStrokeLineCap()
Gets the value of the property strokeLineCap.
|
static StrokeLineCap |
StrokeLineCap.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StrokeLineCap[] |
StrokeLineCap.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<StrokeLineCap> |
Shape.strokeLineCapProperty()
The end cap style of this
Shape as one of the following
values that define possible end cap styles:
StrokeLineCap.BUTT , StrokeLineCap.ROUND ,
and StrokeLineCap.SQUARE . |
Modifier and Type | Method and Description |
---|---|
void |
Shape.setStrokeLineCap(StrokeLineCap value)
Sets the value of the property strokeLineCap.
|
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.