public enum IconCaptionPosition extends Enum<IconCaptionPosition>
Describes position of icon.
Enum Constant and Description |
---|
CaptionAboveIcon
Caption is above icon.
|
CaptionBelowIcon
Caption is below icon.
|
CaptionOverlaid
Caption over laid.
|
CaptionToTheLeft
Caption to the left.
|
CaptionToTheRight
Caption to the right.
|
NoCaption
Caption is not displayed.
|
NoIcon
Icon is not displayed.
|
Modifier and Type | Method and Description |
---|---|
static IconCaptionPosition |
getByValue(int value) |
int |
getValue() |
static IconCaptionPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IconCaptionPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IconCaptionPosition NoIcon
Icon is not displayed.
public static final IconCaptionPosition NoCaption
Caption is not displayed.
public static final IconCaptionPosition CaptionBelowIcon
Caption is below icon.
public static final IconCaptionPosition CaptionAboveIcon
Caption is above icon.
public static final IconCaptionPosition CaptionToTheRight
Caption to the right.
public static final IconCaptionPosition CaptionToTheLeft
Caption to the left.
public static final IconCaptionPosition CaptionOverlaid
Caption over laid.
public static IconCaptionPosition[] values()
for (IconCaptionPosition c : IconCaptionPosition.values()) System.out.println(c);
public static IconCaptionPosition 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()
public static IconCaptionPosition getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.