public enum PositioningMode extends Enum<PositioningMode>
ExcelDrawing
(picture, chart, etc.) in the worksheet.Enum Constant and Description |
---|
FREE_FLOATING
ExcelDrawing (picture, chart, etc.) will not move nor size with cells. |
MOVE
ExcelDrawing (picture, chart, etc.) will move but not size with cells. |
MOVE_AND_SIZE
ExcelDrawing (picture, chart, etc.) will move and size with cells. |
Modifier and Type | Method and Description |
---|---|
static PositioningMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PositioningMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PositioningMode FREE_FLOATING
ExcelDrawing
(picture, chart, etc.) will not move nor size with cells.public static final PositioningMode MOVE
ExcelDrawing
(picture, chart, etc.) will move but not size with cells.public static final PositioningMode MOVE_AND_SIZE
ExcelDrawing
(picture, chart, etc.) will move and size with cells.public static PositioningMode 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 static PositioningMode[] values()
for (PositioningMode c : PositioningMode.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.