
net.rgielen.com4j.office2010.office.MsoScriptLocation Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoScriptLocation implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
msoScriptLocationInHead(1),
/**
*
* The value of this constant is 2
*
*/
msoScriptLocationInBody(2),
;
private final int value;
MsoScriptLocation(int value) { this.value=value; }
public int comEnumValue() { return value; }
}