| Package | Description |
|---|---|
| javafx.scene.layout |
Provides classes to support user interface layout.
|
| Modifier and Type | Field and Description |
|---|---|
(package private) java.util.List<BorderImage> |
Border.images |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<BorderImage> |
Border.getImages()
The list of BorderImages which together define the images to use
instead of stroke for this Border.
|
| Constructor and Description |
|---|
Border(BorderImage... images)
Creates a new Border by supplying an array of BorderImages.
|
Border(BorderStroke[] strokes,
BorderImage[] images)
Creates a new Border by supplying an array of BorderStrokes and BorderImages.
|
| Constructor and Description |
|---|
Border(java.util.List<BorderStroke> strokes,
java.util.List<BorderImage> images)
Creates a new Border by supplying a List of BorderStrokes and BorderImages.
|