Interface GridLayoutConstraintTagDeclaration
public interface GridLayoutConstraintTagDeclaration
Set grid layout specific contraints to the parent component.
- 
Method SummaryModifier and TypeMethodDescriptionvoidsetColumnSpan(javax.el.ValueExpression columnSpan) The number of horizontal cells this component should use.voidsetGridColumn(javax.el.ValueExpression gridColumn) The horizontal position in the grid of this component.voidsetGridRow(javax.el.ValueExpression gridRow) The vertical position in the grid of this component.voidsetRowSpan(javax.el.ValueExpression rowSpan) The number of vertical cells this component should use.
- 
Method Details- 
setColumnSpanvoid setColumnSpan(javax.el.ValueExpression columnSpan) The number of horizontal cells this component should use.
- 
setRowSpanvoid setRowSpan(javax.el.ValueExpression rowSpan) The number of vertical cells this component should use.
- 
setGridColumnvoid setGridColumn(javax.el.ValueExpression gridColumn) The horizontal position in the grid of this component. Please use gridColumn and gridRow both or none.
- 
setGridRowvoid setGridRow(javax.el.ValueExpression gridRow) The vertical position in the grid of this component. Please use gridColumn and gridRow both or none.
 
-