net.rgielen.com4j.office2010.excel.XlWBATemplate Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlWBATemplate implements ComEnum {
/**
*
* The value of this constant is -4109
*
*/
xlWBATChart(-4109),
/**
*
* The value of this constant is 4
*
*/
xlWBATExcel4IntlMacroSheet(4),
/**
*
* The value of this constant is 3
*
*/
xlWBATExcel4MacroSheet(3),
/**
*
* The value of this constant is -4167
*
*/
xlWBATWorksheet(-4167),
;
private final int value;
XlWBATemplate(int value) { this.value=value; }
public int comEnumValue() { return value; }
}