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