public enum ColumnAdjustment extends Enum<ColumnAdjustment>
Enumerates column adjustment types.
Enum Constant and Description |
---|
AutoFitToContent
Auto fit to content.
|
AutoFitToWindow
Auto fit to window.
|
Customized
Customized.
|
Modifier and Type | Method and Description |
---|---|
static ColumnAdjustment |
getByValue(int value) |
int |
getValue() |
static ColumnAdjustment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnAdjustment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnAdjustment Customized
Customized.
public static final ColumnAdjustment AutoFitToContent
Auto fit to content.
public static final ColumnAdjustment AutoFitToWindow
Auto fit to window.
public static ColumnAdjustment[] values()
for (ColumnAdjustment c : ColumnAdjustment.values()) System.out.println(c);
public static ColumnAdjustment 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 ColumnAdjustment getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.