net.rgielen.com4j.office2010.office.MsoFileFindOptions Maven / Gradle / Ivy
The newest version!
package net.rgielen.com4j.office2010.office ;
import com4j.*;
/**
*/
public enum MsoFileFindOptions implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
msoOptionsNew(1),
/**
*
* The value of this constant is 2
*
*/
msoOptionsAdd(2),
/**
*
* The value of this constant is 3
*
*/
msoOptionsWithin(3),
;
private final int value;
MsoFileFindOptions(int value) { this.value=value; }
public int comEnumValue() { return value; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy