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