Uses of Class
javafx.scene.layout.BorderStrokeStyle
Package | Description |
---|---|
javafx.scene.layout |
Provides classes to support user interface layout.
|
-
Uses of BorderStrokeStyle in javafx.scene.layout
Fields in javafx.scene.layout declared as BorderStrokeStyle Modifier and Type Field Description static BorderStrokeStyle
BorderStrokeStyle. DASHED
A predefined dashed pattern to be used for strokingstatic BorderStrokeStyle
BorderStrokeStyle. DOTTED
A predefined dotted pattern to be used for strokingstatic BorderStrokeStyle
BorderStrokeStyle. NONE
Indicates that no stroke should be drawn.static BorderStrokeStyle
BorderStrokeStyle. SOLID
A predefined solid line to be used for strokingMethods in javafx.scene.layout that return BorderStrokeStyle Modifier and Type Method Description BorderStrokeStyle
BorderStroke. getBottomStyle()
Defines the style of bottom side of this border.BorderStrokeStyle
BorderStroke. getLeftStyle()
Defines the style of left side of this border.BorderStrokeStyle
BorderStroke. getRightStyle()
Defines the style of right side of this border.BorderStrokeStyle
BorderStroke. getTopStyle()
Defines the style of top side of this border.Constructors in javafx.scene.layout with parameters of type BorderStrokeStyle Constructor Description BorderStroke(Paint stroke, BorderStrokeStyle style, CornerRadii radii, BorderWidths widths)
Creates a newBorderStroke
.BorderStroke(Paint stroke, BorderStrokeStyle style, CornerRadii radii, BorderWidths widths, Insets insets)
Creates a newBorderStroke
.BorderStroke(Paint topStroke, Paint rightStroke, Paint bottomStroke, Paint leftStroke, BorderStrokeStyle topStyle, BorderStrokeStyle rightStyle, BorderStrokeStyle bottomStyle, BorderStrokeStyle leftStyle, CornerRadii radii, BorderWidths widths, Insets insets)
Creates a newBorderStroke
, specifying all construction parameters.