public enum TextMirrioring extends Enum<TextMirrioring>
Defines text mirrioring
| Enum Constant and Description |
|---|
None
None
|
TextBaseLine
About horizontal "underscore" line below text
|
TextBeginLine
About vertical line before first letter of the text.
|
| Modifier and Type | Method and Description |
|---|---|
static TextMirrioring |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextMirrioring[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextMirrioring None
None
public static final TextMirrioring TextBaseLine
About horizontal "underscore" line below text
public static final TextMirrioring TextBeginLine
About vertical line before first letter of the text.
public static TextMirrioring[] values()
for (TextMirrioring c : TextMirrioring.values()) System.out.println(c);
public static TextMirrioring 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 nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.