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