public enum PatternFillType extends java.lang.Enum<PatternFillType>
| Enum Constant and Description |
|---|
darkDown
Заливка так \\\\\ (толстые линии)
|
darkGray
Заливка точками (много точек)
|
darkGrid
Заливка жирной диагональной сеткой
|
darkHorizontal
Заливка горизонтальными толстыми линиями
|
darkTrellis
Особый тёмный узор
|
darkUp
Заливка так ///// (толстые линии)
|
darkVertical
Заливка выртикальными толстыми линиями
|
gray0625
Заливка точками (очень мало точек)
|
gray125
Заливка точками (очень много точек)
|
lightDown
Заливка так \\\\\ (тонкие линии)
|
lightGray
Заливка точками (мало точек)
|
lightGrid
Заливка бледной вертикально-горизонтальной сеткой
|
lightHorizontal
Заливка горизонтальными тонкими линиями
|
lightTrellis
Особый светлый узор
|
lightUp
Заливка так ///// (тонкие линии)
|
lightVertical
Заливка выртикальными тонкими линиями
|
mediumGray
Заливка точками (среднее покрытие точками)
|
none
Нет заливки
|
solid
Заливка сплошным цветом (используется bgColor)
|
| Modifier and Type | Method and Description |
|---|---|
static PatternFillType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PatternFillType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatternFillType none
public static final PatternFillType solid
public static final PatternFillType gray125
public static final PatternFillType darkGray
public static final PatternFillType mediumGray
public static final PatternFillType lightGray
public static final PatternFillType gray0625
public static final PatternFillType darkHorizontal
public static final PatternFillType lightHorizontal
public static final PatternFillType darkVertical
public static final PatternFillType lightVertical
public static final PatternFillType darkDown
public static final PatternFillType lightDown
public static final PatternFillType darkUp
public static final PatternFillType lightUp
public static final PatternFillType darkGrid
public static final PatternFillType lightGrid
public static final PatternFillType darkTrellis
public static final PatternFillType lightTrellis
public static PatternFillType[] values()
for (PatternFillType c : PatternFillType.values()) System.out.println(c);
public static PatternFillType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null