net.rgielen.com4j.office2010.excel.XlPTSelectionMode Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.excel ;
import com4j.*;
/**
*/
public enum XlPTSelectionMode implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
xlLabelOnly(1),
/**
*
* The value of this constant is 0
*
*/
xlDataAndLabel(0),
/**
*
* The value of this constant is 2
*
*/
xlDataOnly(2),
/**
*
* The value of this constant is 3
*
*/
xlOrigin(3),
/**
*
* The value of this constant is 15
*
*/
xlButton(15),
/**
*
* The value of this constant is 4
*
*/
xlBlanks(4),
/**
*
* The value of this constant is 256
*
*/
xlFirstRow(256),
;
private final int value;
XlPTSelectionMode(int value) { this.value=value; }
public int comEnumValue() { return value; }
}