public static enum TextEditOptions.ClippingPathsProcessingMode extends Enum<TextEditOptions.ClippingPathsProcessingMode>
Clipping path processing modes
Enum Constant and Description |
---|
Expand
Original clipping path will be expanded in the case edited text requires more space.
|
KeepIntact
Keeps clipping paths of the original page layout.
|
Remove
Original clipping path will be removed in the case edited text requires more space.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static TextEditOptions.ClippingPathsProcessingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextEditOptions.ClippingPathsProcessingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextEditOptions.ClippingPathsProcessingMode KeepIntact
Keeps clipping paths of the original page layout. (Default)
public static final TextEditOptions.ClippingPathsProcessingMode Expand
Original clipping path will be expanded in the case edited text requires more space.
public static final TextEditOptions.ClippingPathsProcessingMode Remove
Original clipping path will be removed in the case edited text requires more space. Caution: Because of clipping paths may interact with each other removing of it may lead to unexpected result on the page layout.
public static TextEditOptions.ClippingPathsProcessingMode[] values()
for (TextEditOptions.ClippingPathsProcessingMode c : TextEditOptions.ClippingPathsProcessingMode.values()) System.out.println(c);
public static TextEditOptions.ClippingPathsProcessingMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
Copyright © 2024 Aspose. All Rights Reserved.