Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.scene.layout |
Provides classes to support user interface layout.
|
Modifier and Type | Field and Description |
---|---|
private Priority[] |
GridPane.columnGrow |
private Priority |
ColumnConstraintsBuilder.hgrow |
private Priority[] |
GridPane.rowGrow |
private Priority |
RowConstraintsBuilder.vgrow |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<Priority> |
ColumnConstraints.hgrow
The horizontal grow priority for the column.
|
private ObjectProperty<Priority> |
RowConstraints.vgrow
The vertical grow priority for the row.
|
Modifier and Type | Method and Description |
---|---|
private static Priority[] |
GridPane.createPriorityArray(int length,
Priority value) |
Priority |
ColumnConstraints.getHgrow()
Gets the value of the property hgrow.
|
static Priority |
HBox.getHgrow(Node child)
Returns the child's hgrow constraint if set.
|
static Priority |
GridPane.getHgrow(Node child)
Returns the child's hgrow constraint if set.
|
private static Priority |
GridPane.getNodeHgrow(Node node) |
private static Priority |
GridPane.getNodeVgrow(Node node) |
Priority |
RowConstraints.getVgrow()
Gets the value of the property vgrow.
|
static Priority |
VBox.getVgrow(Node child)
Returns the child's vgrow property if set.
|
static Priority |
GridPane.getVgrow(Node child)
Returns the child's vgrow constraint if set.
|
static Priority |
Priority.max(Priority a,
Priority b)
Convenience method for returning the higher of two priorities.
|
static Priority |
Priority.min(Priority a,
Priority b)
Convenience method for returning the lower of two priorities.
|
static Priority |
Priority.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Priority[] |
Priority.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Priority> |
ColumnConstraints.hgrowProperty()
The horizontal grow priority for the column.
|
ObjectProperty<Priority> |
RowConstraints.vgrowProperty()
The vertical grow priority for the row.
|
Modifier and Type | Method and Description |
---|---|
private static Priority[] |
GridPane.createPriorityArray(int length,
Priority value) |
private double |
VBox.growOrShrinkAreaHeights(java.util.List<Node> managed,
double[] areaHeights,
Priority priority,
double extraHeight,
double width) |
private double |
HBox.growOrShrinkAreaWidths(java.util.List<Node> managed,
double[] areaWidths,
Priority priority,
double extraWidth,
double height) |
private double |
GridPane.growOrShrinkColumnWidths(Priority priority,
double extraWidth) |
private double |
GridPane.growOrShrinkRowHeights(Priority priority,
double extraHeight) |
B |
ColumnConstraintsBuilder.hgrow(Priority x)
Set the value of the
hgrow property for the instance constructed by this builder. |
static Priority |
Priority.max(Priority a,
Priority b)
Convenience method for returning the higher of two priorities.
|
static Priority |
Priority.min(Priority a,
Priority b)
Convenience method for returning the lower of two priorities.
|
static void |
GridPane.setConstraints(Node child,
int columnIndex,
int rowIndex,
int columnspan,
int rowspan,
HPos halignment,
VPos valignment,
Priority hgrow,
Priority vgrow)
Sets the grid position, spans, and alignment for the child when contained in a gridpane.
|
static void |
GridPane.setConstraints(Node child,
int columnIndex,
int rowIndex,
int columnspan,
int rowspan,
HPos halignment,
VPos valignment,
Priority hgrow,
Priority vgrow,
Insets margin)
Sets the grid position, spans, alignment, grow priorities, and margin for
the child when contained in a gridpane.
|
static void |
HBox.setHgrow(Node child,
Priority value)
Sets the horizontal grow priority for the child when contained by an hbox.
|
static void |
GridPane.setHgrow(Node child,
Priority value)
Sets the horizontal grow priority for the child when contained by a gridpane.
|
void |
ColumnConstraints.setHgrow(Priority value)
Sets the value of the property hgrow.
|
static void |
VBox.setVgrow(Node child,
Priority value)
Sets the vertical grow priority for the child when contained by an vbox.
|
static void |
GridPane.setVgrow(Node child,
Priority value)
Sets the vertical grow priority for the child when contained by a gridpane.
|
void |
RowConstraints.setVgrow(Priority value)
Sets the value of the property vgrow.
|
B |
RowConstraintsBuilder.vgrow(Priority x)
Set the value of the
vgrow property for the instance constructed by this builder. |
Constructor and Description |
---|
ColumnConstraints(double minWidth,
double prefWidth,
double maxWidth,
Priority hgrow,
HPos halignment,
boolean fillWidth)
Creates a column constraint object with a fixed size range, horizontal
grow priority, horizonal alignment, and horizontal fill behavior.
|
RowConstraints(double minHeight,
double prefHeight,
double maxHeight,
Priority vgrow,
VPos valignment,
boolean fillHeight)
Creates a row constraint object with a fixed size range, vertical
grow priority, vertical alignment, and vertical fill behavior.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to