Interface AnnotationOutlineColorConfiguration
-
- All Implemented Interfaces:
-
com.pspdfkit.annotations.configuration.AnnotationConfiguration
public interface AnnotationOutlineColorConfiguration implements AnnotationConfiguration
Configuration for annotation outline color (OUTLINE_COLOR).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
AnnotationOutlineColorConfiguration.Builder
Builder for AnnotationOutlineColorConfiguration.
-
Method Summary
Modifier and Type Method Description abstract int
getDefaultOutlineColor()
Default annotation outline color. abstract List<Integer>
getAvailableOutlineColors()
Outline colors available in the color picker. abstract boolean
customColorPickerEnabled()
Whether or not the custom color picker is used. -
-
Method Detail
-
getDefaultOutlineColor
@ColorInt() abstract int getDefaultOutlineColor()
Default annotation outline color.
- Returns:
The outline color used as default for created annotations.
-
getAvailableOutlineColors
@NonNull() abstract List<Integer> getAvailableOutlineColors()
Outline colors available in the color picker.
- Returns:
List of available outline colors.
-
customColorPickerEnabled
abstract boolean customColorPickerEnabled()
Whether or not the custom color picker is used.
- Returns:
true
if the custom color picker is used,false
otherwise.
-
-
-
-