net.rgielen.com4j.office2010.office.XlErrorBarInclude Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum XlErrorBarInclude implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
xlErrorBarIncludeBoth(1),
/**
*
* The value of this constant is 3
*
*/
xlErrorBarIncludeMinusValues(3),
/**
*
* The value of this constant is -4142
*
*/
xlErrorBarIncludeNone(-4142),
/**
*
* The value of this constant is 2
*
*/
xlErrorBarIncludePlusValues(2),
;
private final int value;
XlErrorBarInclude(int value) { this.value=value; }
public int comEnumValue() { return value; }
}