public enum XpsStyleSimulations extends Enum<XpsStyleSimulations>
Valid values for Glyphs element's StyleSimulations property.
Enum Constant and Description |
---|
BoldItalicSimulation
Bold italic simulation
|
BoldSimulation
Bold simulation
|
ItalicSimulation
Italic simulation
|
None
No style simulation
|
Modifier and Type | Method and Description |
---|---|
static XpsStyleSimulations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XpsStyleSimulations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XpsStyleSimulations None
No style simulation
public static final XpsStyleSimulations ItalicSimulation
Italic simulation
public static final XpsStyleSimulations BoldSimulation
Bold simulation
public static final XpsStyleSimulations BoldItalicSimulation
Bold italic simulation
public static XpsStyleSimulations[] values()
for (XpsStyleSimulations c : XpsStyleSimulations.values()) System.out.println(c);
public static XpsStyleSimulations 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 © 2019 Aspose. All Rights Reserved.