net.rgielen.com4j.office2010.excel.XlRunAutoMacro Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlRunAutoMacro implements ComEnum {
/**
*
* The value of this constant is 3
*
*/
xlAutoActivate(3),
/**
*
* The value of this constant is 2
*
*/
xlAutoClose(2),
/**
*
* The value of this constant is 4
*
*/
xlAutoDeactivate(4),
/**
*
* The value of this constant is 1
*
*/
xlAutoOpen(1),
;
private final int value;
XlRunAutoMacro(int value) { this.value=value; }
public int comEnumValue() { return value; }
}