Interface AnnotationFillColorConfiguration
-
- All Implemented Interfaces:
-
com.pspdfkit.annotations.configuration.AnnotationConfiguration
public interface AnnotationFillColorConfiguration implements AnnotationConfiguration
Configuration for annotation fill color (FILL_COLOR).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
AnnotationFillColorConfiguration.Builder
Builder for AnnotationFillColorConfiguration.
-
Method Summary
Modifier and Type Method Description abstract int
getDefaultFillColor()
Default fill color. abstract List<Integer>
getAvailableFillColors()
Fill colors available in the color picker. abstract boolean
customColorPickerEnabled()
Whether or not the custom color picker is used. -
-
Method Detail
-
getDefaultFillColor
@ColorInt() abstract int getDefaultFillColor()
Default fill color.
- Returns:
Fill color used as default for created annotations.
-
getAvailableFillColors
@NonNull() abstract List<Integer> getAvailableFillColors()
Fill colors available in the color picker.
- Returns:
List of available fill 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.
-
-
-
-