Interface AnnotationTextResizingConfiguration
-
- All Implemented Interfaces:
-
com.pspdfkit.annotations.configuration.AnnotationConfiguration
public interface AnnotationTextResizingConfiguration implements AnnotationConfiguration
Configuration for automatic text resizing of com.pspdfkit.annotations.FreeTextAnnotation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
AnnotationTextResizingConfiguration.Builder
Builder for AnnotationTextResizingConfiguration.
-
Method Summary
Modifier and Type Method Description abstract boolean
isHorizontalResizingEnabled()
Controls whether annotations will automatically resize horizontally when entering text. abstract boolean
isVerticalResizingEnabled()
Controls whether annotations will automatically resize vertically when entering text. -
-
Method Detail
-
isHorizontalResizingEnabled
abstract boolean isHorizontalResizingEnabled()
Controls whether annotations will automatically resize horizontally when entering text. Defaults to
true
.- Returns:
true
when horizontal resizing is enabled,false
otherwise.
-
isVerticalResizingEnabled
abstract boolean isVerticalResizingEnabled()
Controls whether annotations will automatically resize vertically when entering text. Defaults to
true
.- Returns:
true
when vertical resizing is enabled,false
otherwise.
-
-
-
-