
net.rgielen.com4j.office2010.word.XlPattern Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum XlPattern implements ComEnum {
/**
*
* The value of this constant is -4105
*
*/
xlPatternAutomatic(-4105),
/**
*
* The value of this constant is 9
*
*/
xlPatternChecker(9),
/**
*
* The value of this constant is 16
*
*/
xlPatternCrissCross(16),
/**
*
* The value of this constant is -4121
*
*/
xlPatternDown(-4121),
/**
*
* The value of this constant is 17
*
*/
xlPatternGray16(17),
/**
*
* The value of this constant is -4124
*
*/
xlPatternGray25(-4124),
/**
*
* The value of this constant is -4125
*
*/
xlPatternGray50(-4125),
/**
*
* The value of this constant is -4126
*
*/
xlPatternGray75(-4126),
/**
*
* The value of this constant is 18
*
*/
xlPatternGray8(18),
/**
*
* The value of this constant is 15
*
*/
xlPatternGrid(15),
/**
*
* The value of this constant is -4128
*
*/
xlPatternHorizontal(-4128),
/**
*
* The value of this constant is 13
*
*/
xlPatternLightDown(13),
/**
*
* The value of this constant is 11
*
*/
xlPatternLightHorizontal(11),
/**
*
* The value of this constant is 14
*
*/
xlPatternLightUp(14),
/**
*
* The value of this constant is 12
*
*/
xlPatternLightVertical(12),
/**
*
* The value of this constant is -4142
*
*/
xlPatternNone(-4142),
/**
*
* The value of this constant is 10
*
*/
xlPatternSemiGray75(10),
/**
*
* The value of this constant is 1
*
*/
xlPatternSolid(1),
/**
*
* The value of this constant is -4162
*
*/
xlPatternUp(-4162),
/**
*
* The value of this constant is -4166
*
*/
xlPatternVertical(-4166),
/**
*
* The value of this constant is 4000
*
*/
xlPatternLinearGradient(4000),
/**
*
* The value of this constant is 4001
*
*/
xlPatternRectangularGradient(4001),
;
private final int value;
XlPattern(int value) { this.value=value; }
public int comEnumValue() { return value; }
}