net.rgielen.com4j.office2010.excel.XlBackground Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlBackground implements ComEnum {
/**
*
* The value of this constant is -4105
*
*/
xlBackgroundAutomatic(-4105),
/**
*
* The value of this constant is 3
*
*/
xlBackgroundOpaque(3),
/**
*
* The value of this constant is 2
*
*/
xlBackgroundTransparent(2),
;
private final int value;
XlBackground(int value) { this.value=value; }
public int comEnumValue() { return value; }
}