public static enum RenderingUtils.LineSpacingType extends Enum<RenderingUtils.LineSpacingType>
Line Spacing Type. Number of pixels or percent of font height.
| Enum Constant and Description |
|---|
PercentOfFontHeight
Value of line spacing is set in percent of font height.
|
Pixels
Value of line spacing is set in pixels.
|
| Modifier and Type | Method and Description |
|---|---|
static RenderingUtils.LineSpacingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingUtils.LineSpacingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingUtils.LineSpacingType Pixels
Value of line spacing is set in pixels.
public static final RenderingUtils.LineSpacingType PercentOfFontHeight
Value of line spacing is set in percent of font height.
public static RenderingUtils.LineSpacingType[] values()
for (RenderingUtils.LineSpacingType c : RenderingUtils.LineSpacingType.values()) System.out.println(c);
public static RenderingUtils.LineSpacingType 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 © 2025 Aspose. All Rights Reserved.