Interface GridLayoutConstraintTagDeclaration
public interface GridLayoutConstraintTagDeclaration
Set grid layout specific contraints to the parent component.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setColumnSpan
(javax.el.ValueExpression columnSpan) The number of horizontal cells this component should use.void
setGridColumn
(javax.el.ValueExpression gridColumn) The horizontal position in the grid of this component.void
setGridRow
(javax.el.ValueExpression gridRow) The vertical position in the grid of this component.void
setRowSpan
(javax.el.ValueExpression rowSpan) The number of vertical cells this component should use.
-
Method Details
-
setColumnSpan
void setColumnSpan(javax.el.ValueExpression columnSpan) The number of horizontal cells this component should use. -
setRowSpan
void setRowSpan(javax.el.ValueExpression rowSpan) The number of vertical cells this component should use. -
setGridColumn
void setGridColumn(javax.el.ValueExpression gridColumn) The horizontal position in the grid of this component. Please use gridColumn and gridRow both or none. -
setGridRow
void setGridRow(javax.el.ValueExpression gridRow) The vertical position in the grid of this component. Please use gridColumn and gridRow both or none.
-