Package com.pspdfkit.contentediting
Interface ContentEditingFillColorConfiguration
-
- All Implemented Interfaces:
public interface ContentEditingFillColorConfiguration
Configuration for content editing fill color.
-
-
Method Summary
Modifier and Type Method Description abstract boolean
customColorPickerEnabled()
Whether or not the custom color picker is used. abstract int
getDefaultFillColor()
Default fill color. abstract List<Integer>
getAvailableFillColors()
Fill colors available in the color picker. -
-
Method Detail
-
customColorPickerEnabled
abstract boolean customColorPickerEnabled()
Whether or not the custom color picker is used.
- Returns:
true
if the custom color picker is used,false
otherwise.
-
getDefaultFillColor
@ColorInt() abstract int getDefaultFillColor()
Default fill color.
- Returns:
Fill color used as default for the content editing font.
-
getAvailableFillColors
@NonNull() abstract List<Integer> getAvailableFillColors()
Fill colors available in the color picker.
- Returns:
List of available fill colors.
-
-
-
-