public enum XpsColorInterpolationMode extends Enum<XpsColorInterpolationMode>
Valid values for gradient brushes' ColorInterpolationMode property.
Enum Constant and Description |
---|
ScRgbLinearInterpolation
ScRgbLinearInterpolation mode.
|
SRgbLinearInterpolation
SRgbLinearInterpolation mode.
|
Modifier and Type | Method and Description |
---|---|
static XpsColorInterpolationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XpsColorInterpolationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XpsColorInterpolationMode SRgbLinearInterpolation
SRgbLinearInterpolation mode.
public static final XpsColorInterpolationMode ScRgbLinearInterpolation
ScRgbLinearInterpolation mode.
public static XpsColorInterpolationMode[] values()
for (XpsColorInterpolationMode c : XpsColorInterpolationMode.values()) System.out.println(c);
public static XpsColorInterpolationMode 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.