Interface AnnotationTextResizingConfiguration.Builder
-
- All Implemented Interfaces:
-
com.pspdfkit.annotations.configuration.AnnotationConfiguration.Builder
public interface AnnotationTextResizingConfiguration.Builder<T> implements AnnotationConfiguration.Builder<T>
Builder for AnnotationTextResizingConfiguration.
-
-
Method Summary
Modifier and Type Method Description abstract T
setHorizontalResizingEnabled(boolean isHorizontalResizingEnabled)
Sets whether annotations will automatically resize horizontally when entering text. abstract T
setVerticalResizingEnabled(boolean isVerticalResizingEnabled)
Sets whether annotations will automatically resize vertically when entering text. -
-
Method Detail
-
setHorizontalResizingEnabled
@NonNull() abstract T setHorizontalResizingEnabled(boolean isHorizontalResizingEnabled)
Sets whether annotations will automatically resize horizontally when entering text. Defaults to
true
.- Parameters:
isHorizontalResizingEnabled
-true
to enable horizontal resizing,false
to disable.
-
setVerticalResizingEnabled
@NonNull() abstract T setVerticalResizingEnabled(boolean isVerticalResizingEnabled)
Sets whether annotations will automatically resize vertically when entering text. Defaults to
true
.- Parameters:
isVerticalResizingEnabled
-true
to enable vertical resizing,false
to disable.
-
-
-
-