Uses of Class
com.itextpdf.layout.properties.grid.GridValue
-
Packages that use GridValue Package Description com.itextpdf.layout.properties.grid com.itextpdf.layout.renderer -
-
Uses of GridValue in com.itextpdf.layout.properties.grid
Subclasses of GridValue in com.itextpdf.layout.properties.grid Modifier and Type Class Description class
AutoValue
Represents an auto template value.class
BreadthValue
Represents a breadth value on a grid.class
FitContentValue
Represents fit content function template value.class
FlexValue
Represents flexible template value.class
FunctionValue
Abstract class representing function value on a grid.class
LengthValue
Abstract class representing length value on a grid.class
MaxContentValue
Represents max-content template value.class
MinContentValue
Represents min-content template value.class
MinMaxValue
Represents minmax function template value.class
PercentValue
Represents percent template value.class
PointValue
Represents point template value.Fields in com.itextpdf.layout.properties.grid with type parameters of type GridValue Modifier and Type Field Description private java.util.List<GridValue>
AutoRepeatValue. values
private java.util.List<GridValue>
FixedRepeatValue. values
Methods in com.itextpdf.layout.properties.grid that return types with arguments of type GridValue Modifier and Type Method Description java.util.List<GridValue>
AutoRepeatValue. getValues()
Get template values which should be repeated.java.util.List<GridValue>
FixedRepeatValue. getValues()
Gets template values which should be repeated.Constructor parameters in com.itextpdf.layout.properties.grid with type arguments of type GridValue Constructor Description AutoRepeatValue(boolean autoFit, java.util.List<GridValue> values)
Create a new auto-repeat valueFixedRepeatValue(int repeatCount, java.util.List<GridValue> values)
Create a new fixed-repeat value -
Uses of GridValue in com.itextpdf.layout.renderer
Fields in com.itextpdf.layout.renderer declared as GridValue Modifier and Type Field Description private GridValue
GridSizer. columnAutoWidth
private GridValue
GridSizer. rowAutoHeight
(package private) GridValue
GridTrackSizer.Track. value
Fields in com.itextpdf.layout.renderer with type parameters of type GridValue Modifier and Type Field Description (package private) java.util.List<GridValue>
GridTemplateResolver.Result. result
private java.util.List<GridValue>
GridSizer. templateColumns
private java.util.List<GridValue>
GridSizer. templateRows
Methods in com.itextpdf.layout.renderer that return types with arguments of type GridValue Modifier and Type Method Description java.util.List<GridValue>
GridTemplateResolver.Result. getList()
(package private) java.util.List<GridValue>
GridTemplateResolver. resolveTemplate(java.util.List<TemplateValue> template)
Resolves template values to grid values by flatting repeats.(package private) java.util.List<GridValue>
GridTemplateResolver.AutoRepeatResolver. shrinkTemplatesToFitSize(int sizeToFit)
Shrinks template list to fit the given size by reducing number of auto-fit/fill repetitions.(package private) java.util.List<GridValue>
GridTemplateResolver. shrinkTemplatesToFitSize(int sizeToFit)
Shrinks template list to fit the given size by reducing number of auto-fit/fill repetitions.Methods in com.itextpdf.layout.renderer with parameters of type GridValue Modifier and Type Method Description void
GridTemplateResolver.Result. addValue(GridValue value)
Method parameters in com.itextpdf.layout.renderer with type arguments of type GridValue Modifier and Type Method Description (package private) java.util.List<java.lang.Float>
GridTrackSizer.TrackSizingResult. getTrackSizesAndExpandPercents(java.util.List<GridValue> template)
Get expanded track sizes where inline percents are resolved against calculated grid area.Constructors in com.itextpdf.layout.renderer with parameters of type GridValue Constructor Description GridSizer(Grid grid, java.util.List<GridValue> templateColumns, java.util.List<GridValue> templateRows, GridValue columnAutoWidth, GridValue rowAutoHeight, float columnGap, float rowGap, Rectangle actualBBox)
Creates new grid sizer instance.Constructor parameters in com.itextpdf.layout.renderer with type arguments of type GridValue Constructor Description GridSizer(Grid grid, java.util.List<GridValue> templateColumns, java.util.List<GridValue> templateRows, GridValue columnAutoWidth, GridValue rowAutoHeight, float columnGap, float rowGap, Rectangle actualBBox)
Creates new grid sizer instance.GridTrackSizer(Grid grid, java.util.List<GridValue> values, float gap, float availableSpace, Grid.GridOrder order)
Create a track sizing algorithm for given template.Result(java.util.List<GridValue> result)
-