Interface AnnotationThicknessConfiguration
-
- All Implemented Interfaces:
-
com.pspdfkit.annotations.configuration.AnnotationConfiguration
public interface AnnotationThicknessConfiguration implements AnnotationConfiguration
Configuration for annotation thickness (THICKNESS).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
AnnotationThicknessConfiguration.Builder
Builder for AnnotationThicknessConfiguration.
-
Method Summary
Modifier and Type Method Description abstract float
getDefaultThickness()
Default annotation thickness. abstract float
getMinThickness()
Minimal annotation thickness. abstract float
getMaxThickness()
Maximal annotation thickness. -
-
Method Detail
-
getDefaultThickness
@FloatRange(from = 0.0) abstract float getDefaultThickness()
Default annotation thickness.
- Returns:
The default annotation thickness in pt.
-
getMinThickness
@FloatRange(from = 0.0) abstract float getMinThickness()
Minimal annotation thickness.
- Returns:
The minimal annotation thickness in pt.
-
getMaxThickness
@FloatRange(from = 0.0) abstract float getMaxThickness()
Maximal annotation thickness.
- Returns:
The maximal annotation thickness in pt.
-
-
-
-