Class LengthValue
- java.lang.Object
-
- com.itextpdf.layout.properties.grid.TemplateValue
-
- com.itextpdf.layout.properties.grid.GridValue
-
- com.itextpdf.layout.properties.grid.BreadthValue
-
- com.itextpdf.layout.properties.grid.LengthValue
-
- Direct Known Subclasses:
PercentValue
,PointValue
public abstract class LengthValue extends BreadthValue
Abstract class representing length value on a grid.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.itextpdf.layout.properties.grid.TemplateValue
TemplateValue.ValueType
-
-
Field Summary
Fields Modifier and Type Field Description protected float
value
-
Fields inherited from class com.itextpdf.layout.properties.grid.TemplateValue
type
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
LengthValue(TemplateValue.ValueType type, float value)
Init a breadth value with a given type and value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description float
getValue()
Gets length value.-
Methods inherited from class com.itextpdf.layout.properties.grid.TemplateValue
getType
-
-
-
-
Constructor Detail
-
LengthValue
protected LengthValue(TemplateValue.ValueType type, float value)
Init a breadth value with a given type and value.- Parameters:
type
- value typevalue
- length value
-
-