public class RowData
extends java.lang.Object
| Type | Property and Description |
|---|---|
javafx.beans.property.BooleanProperty |
exclude |
javafx.beans.property.IntegerProperty |
height |
javafx.beans.property.IntegerProperty |
width |
| Constructor and Description |
|---|
RowData()
Constructs a new instance of RowData using default values.
|
RowData(int width,
int height)
Constructs a new instance of RowData according to the parameters.
|
| Modifier and Type | Method and Description |
|---|---|
javafx.beans.property.BooleanProperty |
excludeProperty() |
int |
getHeight() |
int |
getWidth() |
javafx.beans.property.IntegerProperty |
heightProperty() |
boolean |
isExclude() |
void |
setExclude(boolean value)
Exclude the element from layouting
|
void |
setHeight(int value)
Set the height to use
|
void |
setWidth(int value)
Set a new width
|
java.lang.String |
toString()
Returns a string containing a concise, human-readable description of the
receiver.
|
javafx.beans.property.IntegerProperty |
widthProperty() |
public javafx.beans.property.BooleanProperty excludeProperty
isExclude(),
setExclude(boolean)public javafx.beans.property.IntegerProperty heightProperty
getHeight(),
setHeight(int)public javafx.beans.property.IntegerProperty widthProperty
getWidth(),
setWidth(int)public RowData()
public RowData(int width,
int height)
AbstractLayoutPane.FX_DEFAULT indicates that no minimum width
or no minimum height is specified.width - a minimum width for the controlheight - a minimum height for the controlpublic void setExclude(boolean value)
value - true to excludepublic boolean isExclude()
true when excludedpublic javafx.beans.property.BooleanProperty excludeProperty()
isExclude(),
setExclude(boolean)public void setHeight(int value)
value - the new height or AbstractLayoutPane.FX_DEFAULT for
the defaultpublic int getHeight()
public javafx.beans.property.IntegerProperty heightProperty()
getHeight(),
setHeight(int)public void setWidth(int value)
value - the new width or AbstractLayoutPane.FX_DEFAULTpublic int getWidth()
public javafx.beans.property.IntegerProperty widthProperty()
getWidth(),
setWidth(int)public java.lang.String toString()
toString in class java.lang.Object