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