Example usage for Java javafx.geometry Insets fields, constructors, methods, implement or subclass
The text is from its open source code.
Insets | EMPTY Empty insets. |
Insets(@NamedArg("topRightBottomLeft") double topRightBottomLeft) Constructs a new Insets instance with same value for all four offsets. | |
Insets(@NamedArg("top") double top, @NamedArg("right") double right, @NamedArg("bottom") double bottom, @NamedArg("left") double left) Constructs a new Insets instance with four different offsets. |
double | getBottom() The inset on the bottom side |
double | getLeft() The inset on the left side |
double | getRight() The inset on the right side |
double | getTop() The inset on the top side |