Interface AnnotationTextSizeConfiguration
-
- All Implemented Interfaces:
-
com.pspdfkit.annotations.configuration.AnnotationConfiguration
public interface AnnotationTextSizeConfiguration implements AnnotationConfiguration
Configuration for annotation text size (TEXT_SIZE).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
AnnotationTextSizeConfiguration.Builder
Builder for AnnotationTextSizeConfiguration.
-
Method Summary
Modifier and Type Method Description abstract float
getDefaultTextSize()
Default annotation text size. abstract float
getMinTextSize()
Minimal annotation text size. abstract float
getMaxTextSize()
Maximal annotation text size. -
-
Method Detail
-
getDefaultTextSize
@FloatRange(from = 1.0) abstract float getDefaultTextSize()
Default annotation text size.
- Returns:
The default annotation text size in pt.
-
getMinTextSize
@FloatRange(from = 1.0) abstract float getMinTextSize()
Minimal annotation text size.
- Returns:
The minimal annotation text size in pt.
-
getMaxTextSize
@FloatRange(from = 1.0) abstract float getMaxTextSize()
Maximal annotation text size.
- Returns:
The maximal annotation text size in pt.
-
-
-
-